<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.edegan.com/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JeeminS</id>
	<title>edegan.com - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.edegan.com/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JeeminS"/>
	<link rel="alternate" type="text/html" href="http://www.edegan.com/wiki/Special:Contributions/JeeminS"/>
	<updated>2026-06-02T01:17:19Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22696</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22696"/>
		<updated>2018-03-20T17:26:26Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Sample call of an aggregate function */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perhaps a Simpler Alternative ==&lt;br /&gt;
 Aggregate functions in PostgreSQL:&lt;br /&gt;
 https://www.postgresql.org/docs/9.0/static/functions-aggregate.html&lt;br /&gt;
&lt;br /&gt;
=== Aggregate Functions ===&lt;br /&gt;
&lt;br /&gt;
Table 9-44. Aggregate Functions for Statistics&lt;br /&gt;
   &lt;br /&gt;
       Function	        |                    Argument Type	                   |                       Return Type	                             |                                        Description&lt;br /&gt;
 =======================+==========================================================+=================================================================+=============================================================================================&lt;br /&gt;
 corr(Y, X)	        | double precision                                         | double precision 	                                             |  correlation coefficient&lt;br /&gt;
 covar_pop(Y, X)        | double precision                                         | double precision 	                                             |  population covariance&lt;br /&gt;
 covar_samp(Y, X)       | double precision                                         | double precision		                                     |   sample covariance&lt;br /&gt;
 regr_avgx(Y, X)        | double precision                                         | double precision  	                                             | average of the independent variable (sum(X)/N)&lt;br /&gt;
 regr_avgy(Y, X)        | double precision                                         | double precision		                                     |  average of the dependent variable (sum(Y)/N)&lt;br /&gt;
 regr_count(Y, X)       | double precision                                         | bigint		                                             | number of input rows in which both expressions are nonnull&lt;br /&gt;
 regr_intercept(Y, X)   | double precision                                         | double precision	                                             | y-intercept of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_r2(Y, X)	        | double precision                                         | double precision	                                             | square of the correlation coefficient&lt;br /&gt;
 regr_slope(Y, X)       | double precision                                         | double precision		                                     | slope of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_sxx(Y, X)	        | double precision                                         | double precision		                                     |	sum(X^2) - sum(X)^2/N (&amp;quot;sum of squares&amp;quot; of the independent variable)&lt;br /&gt;
 regr_sxy(Y, X)	        | double precision                                         | double precision		                                     |	sum(X*Y) - sum(X) * sum(Y)/N (&amp;quot;sum of products&amp;quot; of independent times dependent variable)&lt;br /&gt;
 regr_syy(Y, X)	        | double precision                                         | double precision	                                             |sum(Y^2) - sum(Y)^2/N (&amp;quot;sum of squares&amp;quot; of the dependent variable)&lt;br /&gt;
 stddev(expression)     | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for stddev_samp&lt;br /&gt;
 stddev_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population standard deviation of the input values&lt;br /&gt;
 stddev_samp(expression)| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample standard deviation of the input values&lt;br /&gt;
 variance(expression)   | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for var_samp&lt;br /&gt;
 var_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population variance of the input values (square of the population standard deviation)&lt;br /&gt;
 var_samp(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample variance of the input values (square of the sample standard deviation)&lt;br /&gt;
&lt;br /&gt;
=== Sample call of an aggregate function ===&lt;br /&gt;
&lt;br /&gt;
 SELECT regr_slope(tothullcount, avghullcount) FROM hcllayerwinv;&lt;br /&gt;
&lt;br /&gt;
==== Output ====&lt;br /&gt;
    regr_slope    &lt;br /&gt;
 ------------------&lt;br /&gt;
  2.31850202053387&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-funcs.html&lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-window-funcs.html&lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
=== Attempts to call R built-in function from PSQL ===&lt;br /&gt;
&lt;br /&gt;
==== Regression ====&lt;br /&gt;
&lt;br /&gt;
Creating Function: &lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_reg(y numeric[], x numeric[])&lt;br /&gt;
 RETURNS numeric AS $$&lt;br /&gt;
  res &amp;lt;- lm(y ~ x)&lt;br /&gt;
  return(coef(res)[1])&lt;br /&gt;
 $$ LANGUAGE 'plr' immutable;&lt;br /&gt;
&lt;br /&gt;
Calling Function:&lt;br /&gt;
&lt;br /&gt;
 SELECT r_reg(tothullcount, avghullcount) from hcllayerwinv;&lt;br /&gt;
&lt;br /&gt;
Results: &lt;br /&gt;
&lt;br /&gt;
   r_reg &lt;br /&gt;
 -------&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     6&lt;br /&gt;
     4&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     7&lt;br /&gt;
     5&lt;br /&gt;
     3&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     6&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     7&lt;br /&gt;
&lt;br /&gt;
== hcllayerwinv table from tigertest database ==&lt;br /&gt;
&lt;br /&gt;
                        Table &amp;quot;public.hcllayerwinv&amp;quot;&lt;br /&gt;
       Column      |          Type          | Collation | Nullable | Default &lt;br /&gt;
 ------------------+------------------------+-----------+----------+---------&lt;br /&gt;
  place            | character varying(100) |           |          | &lt;br /&gt;
  statecode        | character varying(2)   |           |          | &lt;br /&gt;
  year             | integer                |           |          | &lt;br /&gt;
  layer            | integer                |           |          | &lt;br /&gt;
  lcount           | numeric                |           |          | &lt;br /&gt;
  nosingleton      | bigint                 |           |          | &lt;br /&gt;
  nomultiton       | bigint                 |           |          | &lt;br /&gt;
  nopair           | bigint                 |           |          | &lt;br /&gt;
  nohull           | bigint                 |           |          | &lt;br /&gt;
  totmultitoncount | numeric                |           |          | &lt;br /&gt;
  avgmultitoncount | numeric                |           |          | &lt;br /&gt;
  totpaircount     | numeric                |           |          | &lt;br /&gt;
  avgpaircount     | numeric                |           |          | &lt;br /&gt;
  totpairlength    | double precision       |           |          | &lt;br /&gt;
  avgpairlength    | double precision       |           |          | &lt;br /&gt;
  minpairlength    | double precision       |           |          | &lt;br /&gt;
  maxpairlength    | double precision       |           |          | &lt;br /&gt;
  tothullcount     | numeric                |           |          | &lt;br /&gt;
  avghullcount     | numeric                |           |          | &lt;br /&gt;
  tothullarea      | double precision       |           |          | &lt;br /&gt;
  avghullarea      | double precision       |           |          | &lt;br /&gt;
  minhullarea      | double precision       |           |          | &lt;br /&gt;
  maxhullarea      | double precision       |           |          | &lt;br /&gt;
  tothulldensity   | double precision       |           |          | &lt;br /&gt;
  avghulldensity   | double precision       |           |          | &lt;br /&gt;
  seedearlyinvf    | double precision       |           |          | &lt;br /&gt;
  inflator         | numeric                |           |          | &lt;br /&gt;
  seedearlyinvl16f | double precision       |           |          |&lt;br /&gt;
&lt;br /&gt;
=== Regress by===&lt;br /&gt;
--By: place, statecode, layer, &lt;br /&gt;
--Regress: seedearlyinvl16f ON nosingleton, totmultitoncount, totpaircount, tothullcount, avgpairlength, avghullarea, avghulldensity&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22695</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22695"/>
		<updated>2018-03-20T17:24:44Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Perhaps a Simpler Alternative */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perhaps a Simpler Alternative ==&lt;br /&gt;
 Aggregate functions in PostgreSQL:&lt;br /&gt;
 https://www.postgresql.org/docs/9.0/static/functions-aggregate.html&lt;br /&gt;
&lt;br /&gt;
=== Aggregate Functions ===&lt;br /&gt;
&lt;br /&gt;
Table 9-44. Aggregate Functions for Statistics&lt;br /&gt;
   &lt;br /&gt;
       Function	        |                    Argument Type	                   |                       Return Type	                             |                                        Description&lt;br /&gt;
 =======================+==========================================================+=================================================================+=============================================================================================&lt;br /&gt;
 corr(Y, X)	        | double precision                                         | double precision 	                                             |  correlation coefficient&lt;br /&gt;
 covar_pop(Y, X)        | double precision                                         | double precision 	                                             |  population covariance&lt;br /&gt;
 covar_samp(Y, X)       | double precision                                         | double precision		                                     |   sample covariance&lt;br /&gt;
 regr_avgx(Y, X)        | double precision                                         | double precision  	                                             | average of the independent variable (sum(X)/N)&lt;br /&gt;
 regr_avgy(Y, X)        | double precision                                         | double precision		                                     |  average of the dependent variable (sum(Y)/N)&lt;br /&gt;
 regr_count(Y, X)       | double precision                                         | bigint		                                             | number of input rows in which both expressions are nonnull&lt;br /&gt;
 regr_intercept(Y, X)   | double precision                                         | double precision	                                             | y-intercept of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_r2(Y, X)	        | double precision                                         | double precision	                                             | square of the correlation coefficient&lt;br /&gt;
 regr_slope(Y, X)       | double precision                                         | double precision		                                     | slope of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_sxx(Y, X)	        | double precision                                         | double precision		                                     |	sum(X^2) - sum(X)^2/N (&amp;quot;sum of squares&amp;quot; of the independent variable)&lt;br /&gt;
 regr_sxy(Y, X)	        | double precision                                         | double precision		                                     |	sum(X*Y) - sum(X) * sum(Y)/N (&amp;quot;sum of products&amp;quot; of independent times dependent variable)&lt;br /&gt;
 regr_syy(Y, X)	        | double precision                                         | double precision	                                             |sum(Y^2) - sum(Y)^2/N (&amp;quot;sum of squares&amp;quot; of the dependent variable)&lt;br /&gt;
 stddev(expression)     | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for stddev_samp&lt;br /&gt;
 stddev_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population standard deviation of the input values&lt;br /&gt;
 stddev_samp(expression)| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample standard deviation of the input values&lt;br /&gt;
 variance(expression)   | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for var_samp&lt;br /&gt;
 var_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population variance of the input values (square of the population standard deviation)&lt;br /&gt;
 var_samp(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample variance of the input values (square of the sample standard deviation)&lt;br /&gt;
&lt;br /&gt;
=== Sample call of an aggregate function ===&lt;br /&gt;
&lt;br /&gt;
 SELECT regr_slope(tothullcount, avghullcount) FROM hcllayerwinv;&lt;br /&gt;
    regr_slope    &lt;br /&gt;
 ------------------&lt;br /&gt;
  2.31850202053387&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-funcs.html&lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-window-funcs.html&lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
=== Attempts to call R built-in function from PSQL ===&lt;br /&gt;
&lt;br /&gt;
==== Regression ====&lt;br /&gt;
&lt;br /&gt;
Creating Function: &lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_reg(y numeric[], x numeric[])&lt;br /&gt;
 RETURNS numeric AS $$&lt;br /&gt;
  res &amp;lt;- lm(y ~ x)&lt;br /&gt;
  return(coef(res)[1])&lt;br /&gt;
 $$ LANGUAGE 'plr' immutable;&lt;br /&gt;
&lt;br /&gt;
Calling Function:&lt;br /&gt;
&lt;br /&gt;
 SELECT r_reg(tothullcount, avghullcount) from hcllayerwinv;&lt;br /&gt;
&lt;br /&gt;
Results: &lt;br /&gt;
&lt;br /&gt;
   r_reg &lt;br /&gt;
 -------&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     6&lt;br /&gt;
     4&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     7&lt;br /&gt;
     5&lt;br /&gt;
     3&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     6&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     7&lt;br /&gt;
&lt;br /&gt;
== hcllayerwinv table from tigertest database ==&lt;br /&gt;
&lt;br /&gt;
                        Table &amp;quot;public.hcllayerwinv&amp;quot;&lt;br /&gt;
       Column      |          Type          | Collation | Nullable | Default &lt;br /&gt;
 ------------------+------------------------+-----------+----------+---------&lt;br /&gt;
  place            | character varying(100) |           |          | &lt;br /&gt;
  statecode        | character varying(2)   |           |          | &lt;br /&gt;
  year             | integer                |           |          | &lt;br /&gt;
  layer            | integer                |           |          | &lt;br /&gt;
  lcount           | numeric                |           |          | &lt;br /&gt;
  nosingleton      | bigint                 |           |          | &lt;br /&gt;
  nomultiton       | bigint                 |           |          | &lt;br /&gt;
  nopair           | bigint                 |           |          | &lt;br /&gt;
  nohull           | bigint                 |           |          | &lt;br /&gt;
  totmultitoncount | numeric                |           |          | &lt;br /&gt;
  avgmultitoncount | numeric                |           |          | &lt;br /&gt;
  totpaircount     | numeric                |           |          | &lt;br /&gt;
  avgpaircount     | numeric                |           |          | &lt;br /&gt;
  totpairlength    | double precision       |           |          | &lt;br /&gt;
  avgpairlength    | double precision       |           |          | &lt;br /&gt;
  minpairlength    | double precision       |           |          | &lt;br /&gt;
  maxpairlength    | double precision       |           |          | &lt;br /&gt;
  tothullcount     | numeric                |           |          | &lt;br /&gt;
  avghullcount     | numeric                |           |          | &lt;br /&gt;
  tothullarea      | double precision       |           |          | &lt;br /&gt;
  avghullarea      | double precision       |           |          | &lt;br /&gt;
  minhullarea      | double precision       |           |          | &lt;br /&gt;
  maxhullarea      | double precision       |           |          | &lt;br /&gt;
  tothulldensity   | double precision       |           |          | &lt;br /&gt;
  avghulldensity   | double precision       |           |          | &lt;br /&gt;
  seedearlyinvf    | double precision       |           |          | &lt;br /&gt;
  inflator         | numeric                |           |          | &lt;br /&gt;
  seedearlyinvl16f | double precision       |           |          |&lt;br /&gt;
&lt;br /&gt;
=== Regress by===&lt;br /&gt;
--By: place, statecode, layer, &lt;br /&gt;
--Regress: seedearlyinvl16f ON nosingleton, totmultitoncount, totpaircount, tothullcount, avgpairlength, avghullarea, avghulldensity&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22694</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22694"/>
		<updated>2018-03-20T17:22:28Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Regression */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perhaps a Simpler Alternative ==&lt;br /&gt;
 Aggregate functions in PostgreSQL:&lt;br /&gt;
 https://www.postgresql.org/docs/9.0/static/functions-aggregate.html&lt;br /&gt;
&lt;br /&gt;
=== Aggregate Functions ===&lt;br /&gt;
&lt;br /&gt;
Table 9-44. Aggregate Functions for Statistics&lt;br /&gt;
   &lt;br /&gt;
       Function	        |                    Argument Type	                   |                       Return Type	                             |                                        Description&lt;br /&gt;
 =======================+==========================================================+=================================================================+=============================================================================================&lt;br /&gt;
 corr(Y, X)	        | double precision                                         | double precision 	                                             |  correlation coefficient&lt;br /&gt;
 covar_pop(Y, X)        | double precision                                         | double precision 	                                             |  population covariance&lt;br /&gt;
 covar_samp(Y, X)       | double precision                                         | double precision		                                     |   sample covariance&lt;br /&gt;
 regr_avgx(Y, X)        | double precision                                         | double precision  	                                             | average of the independent variable (sum(X)/N)&lt;br /&gt;
 regr_avgy(Y, X)        | double precision                                         | double precision		                                     |  average of the dependent variable (sum(Y)/N)&lt;br /&gt;
 regr_count(Y, X)       | double precision                                         | bigint		                                             | number of input rows in which both expressions are nonnull&lt;br /&gt;
 regr_intercept(Y, X)   | double precision                                         | double precision	                                             | y-intercept of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_r2(Y, X)	        | double precision                                         | double precision	                                             | square of the correlation coefficient&lt;br /&gt;
 regr_slope(Y, X)       | double precision                                         | double precision		                                     | slope of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_sxx(Y, X)	        | double precision                                         | double precision		                                     |	sum(X^2) - sum(X)^2/N (&amp;quot;sum of squares&amp;quot; of the independent variable)&lt;br /&gt;
 regr_sxy(Y, X)	        | double precision                                         | double precision		                                     |	sum(X*Y) - sum(X) * sum(Y)/N (&amp;quot;sum of products&amp;quot; of independent times dependent variable)&lt;br /&gt;
 regr_syy(Y, X)	        | double precision                                         | double precision	                                             |sum(Y^2) - sum(Y)^2/N (&amp;quot;sum of squares&amp;quot; of the dependent variable)&lt;br /&gt;
 stddev(expression)     | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for stddev_samp&lt;br /&gt;
 stddev_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population standard deviation of the input values&lt;br /&gt;
 stddev_samp(expression)| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample standard deviation of the input values&lt;br /&gt;
 variance(expression)   | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for var_samp&lt;br /&gt;
 var_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population variance of the input values (square of the population standard deviation)&lt;br /&gt;
 var_samp(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample variance of the input values (square of the sample standard deviation)&lt;br /&gt;
&lt;br /&gt;
==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-funcs.html&lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-window-funcs.html&lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
=== Attempts to call R built-in function from PSQL ===&lt;br /&gt;
&lt;br /&gt;
==== Regression ====&lt;br /&gt;
&lt;br /&gt;
Creating Function: &lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_reg(y numeric[], x numeric[])&lt;br /&gt;
 RETURNS numeric AS $$&lt;br /&gt;
  res &amp;lt;- lm(y ~ x)&lt;br /&gt;
  return(coef(res)[1])&lt;br /&gt;
 $$ LANGUAGE 'plr' immutable;&lt;br /&gt;
&lt;br /&gt;
Calling Function:&lt;br /&gt;
&lt;br /&gt;
 SELECT r_reg(tothullcount, avghullcount) from hcllayerwinv;&lt;br /&gt;
&lt;br /&gt;
Results: &lt;br /&gt;
&lt;br /&gt;
   r_reg &lt;br /&gt;
 -------&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     6&lt;br /&gt;
     4&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     7&lt;br /&gt;
     5&lt;br /&gt;
     3&lt;br /&gt;
     3&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     6&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     5&lt;br /&gt;
     4&lt;br /&gt;
     0&lt;br /&gt;
     0&lt;br /&gt;
     7&lt;br /&gt;
&lt;br /&gt;
== hcllayerwinv table from tigertest database ==&lt;br /&gt;
&lt;br /&gt;
                        Table &amp;quot;public.hcllayerwinv&amp;quot;&lt;br /&gt;
       Column      |          Type          | Collation | Nullable | Default &lt;br /&gt;
 ------------------+------------------------+-----------+----------+---------&lt;br /&gt;
  place            | character varying(100) |           |          | &lt;br /&gt;
  statecode        | character varying(2)   |           |          | &lt;br /&gt;
  year             | integer                |           |          | &lt;br /&gt;
  layer            | integer                |           |          | &lt;br /&gt;
  lcount           | numeric                |           |          | &lt;br /&gt;
  nosingleton      | bigint                 |           |          | &lt;br /&gt;
  nomultiton       | bigint                 |           |          | &lt;br /&gt;
  nopair           | bigint                 |           |          | &lt;br /&gt;
  nohull           | bigint                 |           |          | &lt;br /&gt;
  totmultitoncount | numeric                |           |          | &lt;br /&gt;
  avgmultitoncount | numeric                |           |          | &lt;br /&gt;
  totpaircount     | numeric                |           |          | &lt;br /&gt;
  avgpaircount     | numeric                |           |          | &lt;br /&gt;
  totpairlength    | double precision       |           |          | &lt;br /&gt;
  avgpairlength    | double precision       |           |          | &lt;br /&gt;
  minpairlength    | double precision       |           |          | &lt;br /&gt;
  maxpairlength    | double precision       |           |          | &lt;br /&gt;
  tothullcount     | numeric                |           |          | &lt;br /&gt;
  avghullcount     | numeric                |           |          | &lt;br /&gt;
  tothullarea      | double precision       |           |          | &lt;br /&gt;
  avghullarea      | double precision       |           |          | &lt;br /&gt;
  minhullarea      | double precision       |           |          | &lt;br /&gt;
  maxhullarea      | double precision       |           |          | &lt;br /&gt;
  tothulldensity   | double precision       |           |          | &lt;br /&gt;
  avghulldensity   | double precision       |           |          | &lt;br /&gt;
  seedearlyinvf    | double precision       |           |          | &lt;br /&gt;
  inflator         | numeric                |           |          | &lt;br /&gt;
  seedearlyinvl16f | double precision       |           |          |&lt;br /&gt;
&lt;br /&gt;
=== Regress by===&lt;br /&gt;
--By: place, statecode, layer, &lt;br /&gt;
--Regress: seedearlyinvl16f ON nosingleton, totmultitoncount, totpaircount, tothullcount, avgpairlength, avghullarea, avghulldensity&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22693</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22693"/>
		<updated>2018-03-20T17:18:09Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Attempts to call R built-in function from PSQL */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perhaps a Simpler Alternative ==&lt;br /&gt;
 Aggregate functions in PostgreSQL:&lt;br /&gt;
 https://www.postgresql.org/docs/9.0/static/functions-aggregate.html&lt;br /&gt;
&lt;br /&gt;
=== Aggregate Functions ===&lt;br /&gt;
&lt;br /&gt;
Table 9-44. Aggregate Functions for Statistics&lt;br /&gt;
   &lt;br /&gt;
       Function	        |                    Argument Type	                   |                       Return Type	                             |                                        Description&lt;br /&gt;
 =======================+==========================================================+=================================================================+=============================================================================================&lt;br /&gt;
 corr(Y, X)	        | double precision                                         | double precision 	                                             |  correlation coefficient&lt;br /&gt;
 covar_pop(Y, X)        | double precision                                         | double precision 	                                             |  population covariance&lt;br /&gt;
 covar_samp(Y, X)       | double precision                                         | double precision		                                     |   sample covariance&lt;br /&gt;
 regr_avgx(Y, X)        | double precision                                         | double precision  	                                             | average of the independent variable (sum(X)/N)&lt;br /&gt;
 regr_avgy(Y, X)        | double precision                                         | double precision		                                     |  average of the dependent variable (sum(Y)/N)&lt;br /&gt;
 regr_count(Y, X)       | double precision                                         | bigint		                                             | number of input rows in which both expressions are nonnull&lt;br /&gt;
 regr_intercept(Y, X)   | double precision                                         | double precision	                                             | y-intercept of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_r2(Y, X)	        | double precision                                         | double precision	                                             | square of the correlation coefficient&lt;br /&gt;
 regr_slope(Y, X)       | double precision                                         | double precision		                                     | slope of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_sxx(Y, X)	        | double precision                                         | double precision		                                     |	sum(X^2) - sum(X)^2/N (&amp;quot;sum of squares&amp;quot; of the independent variable)&lt;br /&gt;
 regr_sxy(Y, X)	        | double precision                                         | double precision		                                     |	sum(X*Y) - sum(X) * sum(Y)/N (&amp;quot;sum of products&amp;quot; of independent times dependent variable)&lt;br /&gt;
 regr_syy(Y, X)	        | double precision                                         | double precision	                                             |sum(Y^2) - sum(Y)^2/N (&amp;quot;sum of squares&amp;quot; of the dependent variable)&lt;br /&gt;
 stddev(expression)     | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for stddev_samp&lt;br /&gt;
 stddev_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population standard deviation of the input values&lt;br /&gt;
 stddev_samp(expression)| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample standard deviation of the input values&lt;br /&gt;
 variance(expression)   | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for var_samp&lt;br /&gt;
 var_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population variance of the input values (square of the population standard deviation)&lt;br /&gt;
 var_samp(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample variance of the input values (square of the sample standard deviation)&lt;br /&gt;
&lt;br /&gt;
==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-funcs.html&lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-window-funcs.html&lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
=== Attempts to call R built-in function from PSQL ===&lt;br /&gt;
&lt;br /&gt;
==== Regression ====&lt;br /&gt;
&lt;br /&gt;
Creating Function: &lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_reg(y numeric[], x numeric[])&lt;br /&gt;
 RETURNS numeric AS $$&lt;br /&gt;
  res &amp;lt;- lm(y ~ x)&lt;br /&gt;
  return(coef(res)[1])&lt;br /&gt;
 $$ LANGUAGE 'plr' immutable;&lt;br /&gt;
&lt;br /&gt;
Calling Function:&lt;br /&gt;
&lt;br /&gt;
 SELECT *&lt;br /&gt;
&lt;br /&gt;
== hcllayerwinv table from tigertest database ==&lt;br /&gt;
&lt;br /&gt;
                        Table &amp;quot;public.hcllayerwinv&amp;quot;&lt;br /&gt;
       Column      |          Type          | Collation | Nullable | Default &lt;br /&gt;
 ------------------+------------------------+-----------+----------+---------&lt;br /&gt;
  place            | character varying(100) |           |          | &lt;br /&gt;
  statecode        | character varying(2)   |           |          | &lt;br /&gt;
  year             | integer                |           |          | &lt;br /&gt;
  layer            | integer                |           |          | &lt;br /&gt;
  lcount           | numeric                |           |          | &lt;br /&gt;
  nosingleton      | bigint                 |           |          | &lt;br /&gt;
  nomultiton       | bigint                 |           |          | &lt;br /&gt;
  nopair           | bigint                 |           |          | &lt;br /&gt;
  nohull           | bigint                 |           |          | &lt;br /&gt;
  totmultitoncount | numeric                |           |          | &lt;br /&gt;
  avgmultitoncount | numeric                |           |          | &lt;br /&gt;
  totpaircount     | numeric                |           |          | &lt;br /&gt;
  avgpaircount     | numeric                |           |          | &lt;br /&gt;
  totpairlength    | double precision       |           |          | &lt;br /&gt;
  avgpairlength    | double precision       |           |          | &lt;br /&gt;
  minpairlength    | double precision       |           |          | &lt;br /&gt;
  maxpairlength    | double precision       |           |          | &lt;br /&gt;
  tothullcount     | numeric                |           |          | &lt;br /&gt;
  avghullcount     | numeric                |           |          | &lt;br /&gt;
  tothullarea      | double precision       |           |          | &lt;br /&gt;
  avghullarea      | double precision       |           |          | &lt;br /&gt;
  minhullarea      | double precision       |           |          | &lt;br /&gt;
  maxhullarea      | double precision       |           |          | &lt;br /&gt;
  tothulldensity   | double precision       |           |          | &lt;br /&gt;
  avghulldensity   | double precision       |           |          | &lt;br /&gt;
  seedearlyinvf    | double precision       |           |          | &lt;br /&gt;
  inflator         | numeric                |           |          | &lt;br /&gt;
  seedearlyinvl16f | double precision       |           |          |&lt;br /&gt;
&lt;br /&gt;
=== Regress by===&lt;br /&gt;
--By: place, statecode, layer, &lt;br /&gt;
--Regress: seedearlyinvl16f ON nosingleton, totmultitoncount, totpaircount, tothullcount, avgpairlength, avghullarea, avghulldensity&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22692</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22692"/>
		<updated>2018-03-20T17:14:29Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Joe Conway's Documentation on pl/r */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perhaps a Simpler Alternative ==&lt;br /&gt;
 Aggregate functions in PostgreSQL:&lt;br /&gt;
 https://www.postgresql.org/docs/9.0/static/functions-aggregate.html&lt;br /&gt;
&lt;br /&gt;
=== Aggregate Functions ===&lt;br /&gt;
&lt;br /&gt;
Table 9-44. Aggregate Functions for Statistics&lt;br /&gt;
   &lt;br /&gt;
       Function	        |                    Argument Type	                   |                       Return Type	                             |                                        Description&lt;br /&gt;
 =======================+==========================================================+=================================================================+=============================================================================================&lt;br /&gt;
 corr(Y, X)	        | double precision                                         | double precision 	                                             |  correlation coefficient&lt;br /&gt;
 covar_pop(Y, X)        | double precision                                         | double precision 	                                             |  population covariance&lt;br /&gt;
 covar_samp(Y, X)       | double precision                                         | double precision		                                     |   sample covariance&lt;br /&gt;
 regr_avgx(Y, X)        | double precision                                         | double precision  	                                             | average of the independent variable (sum(X)/N)&lt;br /&gt;
 regr_avgy(Y, X)        | double precision                                         | double precision		                                     |  average of the dependent variable (sum(Y)/N)&lt;br /&gt;
 regr_count(Y, X)       | double precision                                         | bigint		                                             | number of input rows in which both expressions are nonnull&lt;br /&gt;
 regr_intercept(Y, X)   | double precision                                         | double precision	                                             | y-intercept of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_r2(Y, X)	        | double precision                                         | double precision	                                             | square of the correlation coefficient&lt;br /&gt;
 regr_slope(Y, X)       | double precision                                         | double precision		                                     | slope of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_sxx(Y, X)	        | double precision                                         | double precision		                                     |	sum(X^2) - sum(X)^2/N (&amp;quot;sum of squares&amp;quot; of the independent variable)&lt;br /&gt;
 regr_sxy(Y, X)	        | double precision                                         | double precision		                                     |	sum(X*Y) - sum(X) * sum(Y)/N (&amp;quot;sum of products&amp;quot; of independent times dependent variable)&lt;br /&gt;
 regr_syy(Y, X)	        | double precision                                         | double precision	                                             |sum(Y^2) - sum(Y)^2/N (&amp;quot;sum of squares&amp;quot; of the dependent variable)&lt;br /&gt;
 stddev(expression)     | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for stddev_samp&lt;br /&gt;
 stddev_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population standard deviation of the input values&lt;br /&gt;
 stddev_samp(expression)| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample standard deviation of the input values&lt;br /&gt;
 variance(expression)   | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for var_samp&lt;br /&gt;
 var_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population variance of the input values (square of the population standard deviation)&lt;br /&gt;
 var_samp(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample variance of the input values (square of the sample standard deviation)&lt;br /&gt;
&lt;br /&gt;
==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-funcs.html&lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-window-funcs.html&lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
=== Attempts to call R built-in function from PSQL ===&lt;br /&gt;
&lt;br /&gt;
== hcllayerwinv table from tigertest database ==&lt;br /&gt;
&lt;br /&gt;
                        Table &amp;quot;public.hcllayerwinv&amp;quot;&lt;br /&gt;
       Column      |          Type          | Collation | Nullable | Default &lt;br /&gt;
 ------------------+------------------------+-----------+----------+---------&lt;br /&gt;
  place            | character varying(100) |           |          | &lt;br /&gt;
  statecode        | character varying(2)   |           |          | &lt;br /&gt;
  year             | integer                |           |          | &lt;br /&gt;
  layer            | integer                |           |          | &lt;br /&gt;
  lcount           | numeric                |           |          | &lt;br /&gt;
  nosingleton      | bigint                 |           |          | &lt;br /&gt;
  nomultiton       | bigint                 |           |          | &lt;br /&gt;
  nopair           | bigint                 |           |          | &lt;br /&gt;
  nohull           | bigint                 |           |          | &lt;br /&gt;
  totmultitoncount | numeric                |           |          | &lt;br /&gt;
  avgmultitoncount | numeric                |           |          | &lt;br /&gt;
  totpaircount     | numeric                |           |          | &lt;br /&gt;
  avgpaircount     | numeric                |           |          | &lt;br /&gt;
  totpairlength    | double precision       |           |          | &lt;br /&gt;
  avgpairlength    | double precision       |           |          | &lt;br /&gt;
  minpairlength    | double precision       |           |          | &lt;br /&gt;
  maxpairlength    | double precision       |           |          | &lt;br /&gt;
  tothullcount     | numeric                |           |          | &lt;br /&gt;
  avghullcount     | numeric                |           |          | &lt;br /&gt;
  tothullarea      | double precision       |           |          | &lt;br /&gt;
  avghullarea      | double precision       |           |          | &lt;br /&gt;
  minhullarea      | double precision       |           |          | &lt;br /&gt;
  maxhullarea      | double precision       |           |          | &lt;br /&gt;
  tothulldensity   | double precision       |           |          | &lt;br /&gt;
  avghulldensity   | double precision       |           |          | &lt;br /&gt;
  seedearlyinvf    | double precision       |           |          | &lt;br /&gt;
  inflator         | numeric                |           |          | &lt;br /&gt;
  seedearlyinvl16f | double precision       |           |          |&lt;br /&gt;
&lt;br /&gt;
=== Regress by===&lt;br /&gt;
--By: place, statecode, layer, &lt;br /&gt;
--Regress: seedearlyinvl16f ON nosingleton, totmultitoncount, totpaircount, tothullcount, avgpairlength, avghullarea, avghulldensity&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22675</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22675"/>
		<updated>2018-03-06T19:25:48Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Aggregate Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perhaps a Simpler Alternative ==&lt;br /&gt;
 Aggregate functions in PostgreSQL:&lt;br /&gt;
 https://www.postgresql.org/docs/9.0/static/functions-aggregate.html&lt;br /&gt;
&lt;br /&gt;
=== Aggregate Functions ===&lt;br /&gt;
&lt;br /&gt;
Table 9-44. Aggregate Functions for Statistics&lt;br /&gt;
   &lt;br /&gt;
       Function	        |                    Argument Type	                   |                       Return Type	                             |                                        Description&lt;br /&gt;
 =======================+==========================================================+=================================================================+=============================================================================================&lt;br /&gt;
 corr(Y, X)	        | double precision                                         | double precision 	                                             |  correlation coefficient&lt;br /&gt;
 covar_pop(Y, X)        | double precision                                         | double precision 	                                             |  population covariance&lt;br /&gt;
 covar_samp(Y, X)       | double precision                                         | double precision		                                     |   sample covariance&lt;br /&gt;
 regr_avgx(Y, X)        | double precision                                         | double precision  	                                             | average of the independent variable (sum(X)/N)&lt;br /&gt;
 regr_avgy(Y, X)        | double precision                                         | double precision		                                     |  average of the dependent variable (sum(Y)/N)&lt;br /&gt;
 regr_count(Y, X)       | double precision                                         | bigint		                                             | number of input rows in which both expressions are nonnull&lt;br /&gt;
 regr_intercept(Y, X)   | double precision                                         | double precision	                                             | y-intercept of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_r2(Y, X)	        | double precision                                         | double precision	                                             | square of the correlation coefficient&lt;br /&gt;
 regr_slope(Y, X)       | double precision                                         | double precision		                                     | slope of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
 regr_sxx(Y, X)	        | double precision                                         | double precision		                                     |	sum(X^2) - sum(X)^2/N (&amp;quot;sum of squares&amp;quot; of the independent variable)&lt;br /&gt;
 regr_sxy(Y, X)	        | double precision                                         | double precision		                                     |	sum(X*Y) - sum(X) * sum(Y)/N (&amp;quot;sum of products&amp;quot; of independent times dependent variable)&lt;br /&gt;
 regr_syy(Y, X)	        | double precision                                         | double precision	                                             |sum(Y^2) - sum(Y)^2/N (&amp;quot;sum of squares&amp;quot; of the dependent variable)&lt;br /&gt;
 stddev(expression)     | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for stddev_samp&lt;br /&gt;
 stddev_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population standard deviation of the input values&lt;br /&gt;
 stddev_samp(expression)| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample standard deviation of the input values&lt;br /&gt;
 variance(expression)   | smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	historical alias for var_samp&lt;br /&gt;
 var_pop(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	population variance of the input values (square of the population standard deviation)&lt;br /&gt;
 var_samp(expression)	| smallint, int, bigint, real, double precision, or numeric| double precision for floating-point arguments, otherwise numeric|	sample variance of the input values (square of the sample standard deviation)&lt;br /&gt;
&lt;br /&gt;
==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-funcs.html&lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-window-funcs.html&lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
== hcllayerwinv table from tigertest database ==&lt;br /&gt;
&lt;br /&gt;
                        Table &amp;quot;public.hcllayerwinv&amp;quot;&lt;br /&gt;
       Column      |          Type          | Collation | Nullable | Default &lt;br /&gt;
 ------------------+------------------------+-----------+----------+---------&lt;br /&gt;
  place            | character varying(100) |           |          | &lt;br /&gt;
  statecode        | character varying(2)   |           |          | &lt;br /&gt;
  year             | integer                |           |          | &lt;br /&gt;
  layer            | integer                |           |          | &lt;br /&gt;
  lcount           | numeric                |           |          | &lt;br /&gt;
  nosingleton      | bigint                 |           |          | &lt;br /&gt;
  nomultiton       | bigint                 |           |          | &lt;br /&gt;
  nopair           | bigint                 |           |          | &lt;br /&gt;
  nohull           | bigint                 |           |          | &lt;br /&gt;
  totmultitoncount | numeric                |           |          | &lt;br /&gt;
  avgmultitoncount | numeric                |           |          | &lt;br /&gt;
  totpaircount     | numeric                |           |          | &lt;br /&gt;
  avgpaircount     | numeric                |           |          | &lt;br /&gt;
  totpairlength    | double precision       |           |          | &lt;br /&gt;
  avgpairlength    | double precision       |           |          | &lt;br /&gt;
  minpairlength    | double precision       |           |          | &lt;br /&gt;
  maxpairlength    | double precision       |           |          | &lt;br /&gt;
  tothullcount     | numeric                |           |          | &lt;br /&gt;
  avghullcount     | numeric                |           |          | &lt;br /&gt;
  tothullarea      | double precision       |           |          | &lt;br /&gt;
  avghullarea      | double precision       |           |          | &lt;br /&gt;
  minhullarea      | double precision       |           |          | &lt;br /&gt;
  maxhullarea      | double precision       |           |          | &lt;br /&gt;
  tothulldensity   | double precision       |           |          | &lt;br /&gt;
  avghulldensity   | double precision       |           |          | &lt;br /&gt;
  seedearlyinvf    | double precision       |           |          | &lt;br /&gt;
  inflator         | numeric                |           |          | &lt;br /&gt;
  seedearlyinvl16f | double precision       |           |          |&lt;br /&gt;
&lt;br /&gt;
=== Regress by===&lt;br /&gt;
--By: place, statecode, layer, &lt;br /&gt;
--Regress: seedearlyinvl16f ON nosingleton, totmultitoncount, totpaircount, tothullcount, avgpairlength, avghullarea, avghulldensity&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22674</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22674"/>
		<updated>2018-03-06T19:15:01Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Perhaps a Simpler Alternative */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perhaps a Simpler Alternative ==&lt;br /&gt;
 Aggregate functions in PostgreSQL:&lt;br /&gt;
 https://www.postgresql.org/docs/9.0/static/functions-aggregate.html&lt;br /&gt;
&lt;br /&gt;
=== Aggregate Functions ===&lt;br /&gt;
&lt;br /&gt;
Table 9-44. Aggregate Functions for Statistics&lt;br /&gt;
&lt;br /&gt;
Function	Argument Type	Return Type	Description&lt;br /&gt;
corr(Y, X)	double precision	double precision	correlation coefficient&lt;br /&gt;
covar_pop(Y, X)	double precision	double precision	population covariance&lt;br /&gt;
covar_samp(Y, X)	double precision	double precision	sample covariance&lt;br /&gt;
regr_avgx(Y, X)	double precision	double precision	average of the independent variable (sum(X)/N)&lt;br /&gt;
regr_avgy(Y, X)	double precision	double precision	average of the dependent variable (sum(Y)/N)&lt;br /&gt;
regr_count(Y, X)	double precision	bigint	number of input rows in which both expressions are nonnull&lt;br /&gt;
regr_intercept(Y, X)	double precision	double precision	y-intercept of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
regr_r2(Y, X)	double precision	double precision	square of the correlation coefficient&lt;br /&gt;
regr_slope(Y, X)	double precision	double precision	slope of the least-squares-fit linear equation determined by the (X, Y) pairs&lt;br /&gt;
regr_sxx(Y, X)	double precision	double precision	sum(X^2) - sum(X)^2/N (&amp;quot;sum of squares&amp;quot; of the independent variable)&lt;br /&gt;
regr_sxy(Y, X)	double precision	double precision	sum(X*Y) - sum(X) * sum(Y)/N (&amp;quot;sum of products&amp;quot; of independent times dependent variable)&lt;br /&gt;
regr_syy(Y, X)	double precision	double precision	sum(Y^2) - sum(Y)^2/N (&amp;quot;sum of squares&amp;quot; of the dependent variable)&lt;br /&gt;
stddev(expression)	smallint, int, bigint, real, double precision, or numeric	double precision for floating-point arguments, otherwise numeric	historical alias for stddev_samp&lt;br /&gt;
stddev_pop(expression)	smallint, int, bigint, real, double precision, or numeric	double precision for floating-point arguments, otherwise numeric	population standard deviation of the input values&lt;br /&gt;
stddev_samp(expression)	smallint, int, bigint, real, double precision, or numeric	double precision for floating-point arguments, otherwise numeric	sample standard deviation of the input values&lt;br /&gt;
variance(expression)	smallint, int, bigint, real, double precision, or numeric	double precision for floating-point arguments, otherwise numeric	historical alias for var_samp&lt;br /&gt;
var_pop(expression)	smallint, int, bigint, real, double precision, or numeric	double precision for floating-point arguments, otherwise numeric	population variance of the input values (square of the population standard deviation)&lt;br /&gt;
var_samp(expression)	smallint, int, bigint, real, double precision, or numeric	double precision for floating-point arguments, otherwise numeric	sample variance of the input values (square of the sample standard deviation)&lt;br /&gt;
&lt;br /&gt;
==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-funcs.html&lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-window-funcs.html&lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
== hcllayerwinv table from tigertest database ==&lt;br /&gt;
&lt;br /&gt;
                        Table &amp;quot;public.hcllayerwinv&amp;quot;&lt;br /&gt;
       Column      |          Type          | Collation | Nullable | Default &lt;br /&gt;
 ------------------+------------------------+-----------+----------+---------&lt;br /&gt;
  place            | character varying(100) |           |          | &lt;br /&gt;
  statecode        | character varying(2)   |           |          | &lt;br /&gt;
  year             | integer                |           |          | &lt;br /&gt;
  layer            | integer                |           |          | &lt;br /&gt;
  lcount           | numeric                |           |          | &lt;br /&gt;
  nosingleton      | bigint                 |           |          | &lt;br /&gt;
  nomultiton       | bigint                 |           |          | &lt;br /&gt;
  nopair           | bigint                 |           |          | &lt;br /&gt;
  nohull           | bigint                 |           |          | &lt;br /&gt;
  totmultitoncount | numeric                |           |          | &lt;br /&gt;
  avgmultitoncount | numeric                |           |          | &lt;br /&gt;
  totpaircount     | numeric                |           |          | &lt;br /&gt;
  avgpaircount     | numeric                |           |          | &lt;br /&gt;
  totpairlength    | double precision       |           |          | &lt;br /&gt;
  avgpairlength    | double precision       |           |          | &lt;br /&gt;
  minpairlength    | double precision       |           |          | &lt;br /&gt;
  maxpairlength    | double precision       |           |          | &lt;br /&gt;
  tothullcount     | numeric                |           |          | &lt;br /&gt;
  avghullcount     | numeric                |           |          | &lt;br /&gt;
  tothullarea      | double precision       |           |          | &lt;br /&gt;
  avghullarea      | double precision       |           |          | &lt;br /&gt;
  minhullarea      | double precision       |           |          | &lt;br /&gt;
  maxhullarea      | double precision       |           |          | &lt;br /&gt;
  tothulldensity   | double precision       |           |          | &lt;br /&gt;
  avghulldensity   | double precision       |           |          | &lt;br /&gt;
  seedearlyinvf    | double precision       |           |          | &lt;br /&gt;
  inflator         | numeric                |           |          | &lt;br /&gt;
  seedearlyinvl16f | double precision       |           |          |&lt;br /&gt;
&lt;br /&gt;
=== Regress by===&lt;br /&gt;
--By: place, statecode, layer, &lt;br /&gt;
--Regress: seedearlyinvl16f ON nosingleton, totmultitoncount, totpaircount, tothullcount, avgpairlength, avghullarea, avghulldensity&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22669</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22669"/>
		<updated>2018-03-02T18:25:28Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Perhaps a Simpler Alternative ==&lt;br /&gt;
 Aggregate functions in PostgreSQL:&lt;br /&gt;
 https://www.postgresql.org/docs/9.0/static/functions-aggregate.html&lt;br /&gt;
&lt;br /&gt;
==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-funcs.html&lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-window-funcs.html&lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
== hcllayerwinv table from tigertest database ==&lt;br /&gt;
&lt;br /&gt;
                        Table &amp;quot;public.hcllayerwinv&amp;quot;&lt;br /&gt;
       Column      |          Type          | Collation | Nullable | Default &lt;br /&gt;
 ------------------+------------------------+-----------+----------+---------&lt;br /&gt;
  place            | character varying(100) |           |          | &lt;br /&gt;
  statecode        | character varying(2)   |           |          | &lt;br /&gt;
  year             | integer                |           |          | &lt;br /&gt;
  layer            | integer                |           |          | &lt;br /&gt;
  lcount           | numeric                |           |          | &lt;br /&gt;
  nosingleton      | bigint                 |           |          | &lt;br /&gt;
  nomultiton       | bigint                 |           |          | &lt;br /&gt;
  nopair           | bigint                 |           |          | &lt;br /&gt;
  nohull           | bigint                 |           |          | &lt;br /&gt;
  totmultitoncount | numeric                |           |          | &lt;br /&gt;
  avgmultitoncount | numeric                |           |          | &lt;br /&gt;
  totpaircount     | numeric                |           |          | &lt;br /&gt;
  avgpaircount     | numeric                |           |          | &lt;br /&gt;
  totpairlength    | double precision       |           |          | &lt;br /&gt;
  avgpairlength    | double precision       |           |          | &lt;br /&gt;
  minpairlength    | double precision       |           |          | &lt;br /&gt;
  maxpairlength    | double precision       |           |          | &lt;br /&gt;
  tothullcount     | numeric                |           |          | &lt;br /&gt;
  avghullcount     | numeric                |           |          | &lt;br /&gt;
  tothullarea      | double precision       |           |          | &lt;br /&gt;
  avghullarea      | double precision       |           |          | &lt;br /&gt;
  minhullarea      | double precision       |           |          | &lt;br /&gt;
  maxhullarea      | double precision       |           |          | &lt;br /&gt;
  tothulldensity   | double precision       |           |          | &lt;br /&gt;
  avghulldensity   | double precision       |           |          | &lt;br /&gt;
  seedearlyinvf    | double precision       |           |          | &lt;br /&gt;
  inflator         | numeric                |           |          | &lt;br /&gt;
  seedearlyinvl16f | double precision       |           |          |&lt;br /&gt;
&lt;br /&gt;
=== Regress by===&lt;br /&gt;
--By: place, statecode, layer, &lt;br /&gt;
--Regress: seedearlyinvl16f ON nosingleton, totmultitoncount, totpaircount, tothullcount, avgpairlength, avghullarea, avghulldensity&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22666</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22666"/>
		<updated>2018-03-01T20:01:13Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Joe Conway's Documentation on pl/r */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-funcs.html&lt;br /&gt;
 http://www.joeconway.com/plr/doc/plr-window-funcs.html&lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
== hcllayerwinv table from tigertest database ==&lt;br /&gt;
&lt;br /&gt;
                        Table &amp;quot;public.hcllayerwinv&amp;quot;&lt;br /&gt;
       Column      |          Type          | Collation | Nullable | Default &lt;br /&gt;
 ------------------+------------------------+-----------+----------+---------&lt;br /&gt;
  place            | character varying(100) |           |          | &lt;br /&gt;
  statecode        | character varying(2)   |           |          | &lt;br /&gt;
  year             | integer                |           |          | &lt;br /&gt;
  layer            | integer                |           |          | &lt;br /&gt;
  lcount           | numeric                |           |          | &lt;br /&gt;
  nosingleton      | bigint                 |           |          | &lt;br /&gt;
  nomultiton       | bigint                 |           |          | &lt;br /&gt;
  nopair           | bigint                 |           |          | &lt;br /&gt;
  nohull           | bigint                 |           |          | &lt;br /&gt;
  totmultitoncount | numeric                |           |          | &lt;br /&gt;
  avgmultitoncount | numeric                |           |          | &lt;br /&gt;
  totpaircount     | numeric                |           |          | &lt;br /&gt;
  avgpaircount     | numeric                |           |          | &lt;br /&gt;
  totpairlength    | double precision       |           |          | &lt;br /&gt;
  avgpairlength    | double precision       |           |          | &lt;br /&gt;
  minpairlength    | double precision       |           |          | &lt;br /&gt;
  maxpairlength    | double precision       |           |          | &lt;br /&gt;
  tothullcount     | numeric                |           |          | &lt;br /&gt;
  avghullcount     | numeric                |           |          | &lt;br /&gt;
  tothullarea      | double precision       |           |          | &lt;br /&gt;
  avghullarea      | double precision       |           |          | &lt;br /&gt;
  minhullarea      | double precision       |           |          | &lt;br /&gt;
  maxhullarea      | double precision       |           |          | &lt;br /&gt;
  tothulldensity   | double precision       |           |          | &lt;br /&gt;
  avghulldensity   | double precision       |           |          | &lt;br /&gt;
  seedearlyinvf    | double precision       |           |          | &lt;br /&gt;
  inflator         | numeric                |           |          | &lt;br /&gt;
  seedearlyinvl16f | double precision       |           |          |&lt;br /&gt;
&lt;br /&gt;
=== Regress by===&lt;br /&gt;
--By: place, statecode, layer, &lt;br /&gt;
--Regress: seedearlyinvl16f ON nosingleton, totmultitoncount, totpaircount, tothullcount, avgpairlength, avghullarea, avghulldensity&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22659</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22659"/>
		<updated>2018-02-27T18:53:02Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* hcllayerwinv table from tigertest database */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
== hcllayerwinv table from tigertest database ==&lt;br /&gt;
&lt;br /&gt;
                        Table &amp;quot;public.hcllayerwinv&amp;quot;&lt;br /&gt;
       Column      |          Type          | Collation | Nullable | Default &lt;br /&gt;
 ------------------+------------------------+-----------+----------+---------&lt;br /&gt;
  place            | character varying(100) |           |          | &lt;br /&gt;
  statecode        | character varying(2)   |           |          | &lt;br /&gt;
  year             | integer                |           |          | &lt;br /&gt;
  layer            | integer                |           |          | &lt;br /&gt;
  lcount           | numeric                |           |          | &lt;br /&gt;
  nosingleton      | bigint                 |           |          | &lt;br /&gt;
  nomultiton       | bigint                 |           |          | &lt;br /&gt;
  nopair           | bigint                 |           |          | &lt;br /&gt;
  nohull           | bigint                 |           |          | &lt;br /&gt;
  totmultitoncount | numeric                |           |          | &lt;br /&gt;
  avgmultitoncount | numeric                |           |          | &lt;br /&gt;
  totpaircount     | numeric                |           |          | &lt;br /&gt;
  avgpaircount     | numeric                |           |          | &lt;br /&gt;
  totpairlength    | double precision       |           |          | &lt;br /&gt;
  avgpairlength    | double precision       |           |          | &lt;br /&gt;
  minpairlength    | double precision       |           |          | &lt;br /&gt;
  maxpairlength    | double precision       |           |          | &lt;br /&gt;
  tothullcount     | numeric                |           |          | &lt;br /&gt;
  avghullcount     | numeric                |           |          | &lt;br /&gt;
  tothullarea      | double precision       |           |          | &lt;br /&gt;
  avghullarea      | double precision       |           |          | &lt;br /&gt;
  minhullarea      | double precision       |           |          | &lt;br /&gt;
  maxhullarea      | double precision       |           |          | &lt;br /&gt;
  tothulldensity   | double precision       |           |          | &lt;br /&gt;
  avghulldensity   | double precision       |           |          | &lt;br /&gt;
  seedearlyinvf    | double precision       |           |          | &lt;br /&gt;
  inflator         | numeric                |           |          | &lt;br /&gt;
  seedearlyinvl16f | double precision       |           |          |&lt;br /&gt;
&lt;br /&gt;
=== Regress by===&lt;br /&gt;
--By: place, statecode, layer, &lt;br /&gt;
--Regress: seedearlyinvl16f ON nosingleton, totmultitoncount, totpaircount, tothullcount, avgpairlength, avghullarea, avghulldensity&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22658</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22658"/>
		<updated>2018-02-27T18:43:34Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
== hcllayerwinv table from tigertest database ==&lt;br /&gt;
&lt;br /&gt;
                        Table &amp;quot;public.hcllayerwinv&amp;quot;&lt;br /&gt;
       Column      |          Type          | Collation | Nullable | Default &lt;br /&gt;
 ------------------+------------------------+-----------+----------+---------&lt;br /&gt;
  place            | character varying(100) |           |          | &lt;br /&gt;
  statecode        | character varying(2)   |           |          | &lt;br /&gt;
  year             | integer                |           |          | &lt;br /&gt;
  layer            | integer                |           |          | &lt;br /&gt;
  lcount           | numeric                |           |          | &lt;br /&gt;
  nosingleton      | bigint                 |           |          | &lt;br /&gt;
  nomultiton       | bigint                 |           |          | &lt;br /&gt;
  nopair           | bigint                 |           |          | &lt;br /&gt;
  nohull           | bigint                 |           |          | &lt;br /&gt;
  totmultitoncount | numeric                |           |          | &lt;br /&gt;
  avgmultitoncount | numeric                |           |          | &lt;br /&gt;
  totpaircount     | numeric                |           |          | &lt;br /&gt;
  avgpaircount     | numeric                |           |          | &lt;br /&gt;
  totpairlength    | double precision       |           |          | &lt;br /&gt;
  avgpairlength    | double precision       |           |          | &lt;br /&gt;
  minpairlength    | double precision       |           |          | &lt;br /&gt;
  maxpairlength    | double precision       |           |          | &lt;br /&gt;
  tothullcount     | numeric                |           |          | &lt;br /&gt;
  avghullcount     | numeric                |           |          | &lt;br /&gt;
  tothullarea      | double precision       |           |          | &lt;br /&gt;
  avghullarea      | double precision       |           |          | &lt;br /&gt;
  minhullarea      | double precision       |           |          | &lt;br /&gt;
  maxhullarea      | double precision       |           |          | &lt;br /&gt;
  tothulldensity   | double precision       |           |          | &lt;br /&gt;
  avghulldensity   | double precision       |           |          | &lt;br /&gt;
  seedearlyinvf    | double precision       |           |          | &lt;br /&gt;
  inflator         | numeric                |           |          | &lt;br /&gt;
  seedearlyinvl16f | double precision       |           |          | &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22650</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22650"/>
		<updated>2018-02-22T19:43:05Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Joe Conway's Documentation on pl/r */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22649</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22649"/>
		<updated>2018-02-22T19:42:40Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Sample Function Code in PostgreSQL */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
==== Creating the Sample Function ====&lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
===== Calling the Sample Function ====&lt;br /&gt;
&lt;br /&gt;
 SELECT * FROM r_max(2,3);&lt;br /&gt;
&lt;br /&gt;
returns&lt;br /&gt;
&lt;br /&gt;
  r_max &lt;br /&gt;
 -------&lt;br /&gt;
      3&lt;br /&gt;
 (1 row)&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22648</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22648"/>
		<updated>2018-02-22T19:41:37Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
&lt;br /&gt;
=== Sample Function Code in PostgreSQL ===&lt;br /&gt;
 &lt;br /&gt;
Inside a database (ex) tigertest):&lt;br /&gt;
&lt;br /&gt;
 CREATE OR REPLACE FUNCTION r_max (integer, integer) RETURNS integer AS ’&lt;br /&gt;
     if (arg1 &amp;gt; arg2)&lt;br /&gt;
         return(arg1)&lt;br /&gt;
     else&lt;br /&gt;
         return(arg2)&lt;br /&gt;
 ’ LANGUAGE ’plr’ STRICT;&lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22647</id>
		<title>Using R in PostgreSQL</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Using_R_in_PostgreSQL&amp;diff=22647"/>
		<updated>2018-02-22T19:39:28Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Joe Conway's Documentation on pl/r==&lt;br /&gt;
&lt;br /&gt;
 http://joeconway.com/doc/plr-US.pdf &lt;br /&gt;
&lt;br /&gt;
==Installing PL/R on the dbase server==&lt;br /&gt;
&lt;br /&gt;
Check the version of the dbase by doing a&lt;br /&gt;
 SELECT version();&lt;br /&gt;
&lt;br /&gt;
This gives us 9.5.10&lt;br /&gt;
&lt;br /&gt;
Then as root:&lt;br /&gt;
 apt-get install postgresql-9.5-plr&lt;br /&gt;
&lt;br /&gt;
Finally enable the extension in a dbase:&lt;br /&gt;
 create extension plr;&lt;br /&gt;
&lt;br /&gt;
See also: http://www.joeconway.com/presentations/plr-PGConfNYC2014.pdf&lt;br /&gt;
&lt;br /&gt;
==Instructions on Use==&lt;br /&gt;
&lt;br /&gt;
To use R from pgAdmin III, follow the instructions in [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial]: choose the database, click SQL, and run &amp;quot;CREATE EXTENSION plr;&amp;quot;. This allows R functions to be used in this database from then on. You should be able to run the given examples in the tutorial after this is done. This was run on databases tigertest and template1.&lt;br /&gt;
&lt;br /&gt;
[https://www.joeconway.com/presentations/plr-DWDC-2015.05.pdf Another possibly useful presentation on PL/R.] &lt;br /&gt;
&lt;br /&gt;
==How PL/R was installed on the RDP==&lt;br /&gt;
&lt;br /&gt;
On 2018-01-18, PL/R was installed to allow PostgreSQL users to use R functions from SQL queries. It was installed using [https://www.bostongis.com/PrinterFriendly.aspx?content_name=postgresql_plr_tut01 this tutorial.] The link from the tutorial for PL/R doesn't work, I used [http://www.joeconway.com/plr.html this instead.] &lt;br /&gt;
&lt;br /&gt;
It required R version 3.3.0 for PL/R to work with PostgreSQL 9.5. If the environmental variables R_HOME or PATH are edited so that they point to a different version of R, this might not work, and PL/R might have to be reinstalled. If the version of PostgreSQL is updated, both the R version and PL/R version will have to match it as well.&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Urban_Start-up_Agglomeration_and_Venture_Capital_Investment&amp;diff=22432</id>
		<title>Urban Start-up Agglomeration and Venture Capital Investment</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Urban_Start-up_Agglomeration_and_Venture_Capital_Investment&amp;diff=22432"/>
		<updated>2018-01-11T20:10:23Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{AcademicPaper&lt;br /&gt;
|Has title=Urban Start-up Agglomeration and Venture Capital Investment&lt;br /&gt;
|Has author=Ed Egan,&lt;br /&gt;
|Has RAs=Peter Jalbert, Jake Silberman, Christy Warden, Jeemin Sim,&lt;br /&gt;
|Has paper status=In development&lt;br /&gt;
}}&lt;br /&gt;
==Summary==&lt;br /&gt;
&lt;br /&gt;
Agglomeration is generally thought to be one of the most important determinants of growth for urban entrepreneurship ecosystems. However, there is essentially no empirical evidence to support this. This paper takes advantage of geocoding and introduces a novel measure of agglomeration. This measure is the smallest circle area that covers all startup offices, subject to having at least N startups in each circle. Using GIS data on cities, this paper controls for the density and socio-demographics of an area to identify the effect of just agglomeration. &lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
&lt;br /&gt;
Clusters of economic activity plays a significant role in the firms performance and growth. An important driver of growth is the knowledge spillover between firms. This includes among others the facilitation of information flow and ideas between firms which could be a milestone especially in the growth of startup firms or small businesses. This project focuses on the effects of agglomeration on the performance and growth of startup firms. It introduces a novel measure of agglomeration which can be used to empirically test the effects of clustering. This measure the is smallest total circle area that covers all of the startups in the sample such that there are at least n firms in each circle. The projects is based on the creation of an algorithm which gives an unbiased measure to be used in the empirical analysis.  The regression  we are interested in takes the following form:&lt;br /&gt;
&lt;br /&gt;
[[File:regression_equation.png]]&lt;br /&gt;
&lt;br /&gt;
The dependent variable is a measure of growth of the firms. This measure could be investment forwarded one period or growth in investment. The control variables include the number of the startups firms, m, the agglomeration measure, A and a vector of other control variables affecting the growth of firms at time t. Because of the endogeneity in the circle area or the measure of agglomeration, A, there is a need for an instrumental variable to get consistent estimates of the effects we are interested in. The proposed instrument is the presence of a river, or road in between the points representing geographical locations of the venture capital backed up firms. The instrument affects agglomeration without having a direct impact on the growth. This makes it good candidate for a valid instrument.&lt;br /&gt;
The next tasks are determining the additional control variables to include in the regression, years to include in the analysis and methods of finding an unbiased measure of agglomeration.&lt;br /&gt;
&lt;br /&gt;
==Data==&lt;br /&gt;
&lt;br /&gt;
===Making the circle input data===&lt;br /&gt;
&lt;br /&gt;
Ed's additional datawork is in &lt;br /&gt;
 Z:\VentureCapitalData\SDCVCData\vcdb2\ProcessingCoLevelSimple.sql&lt;br /&gt;
&lt;br /&gt;
The key table for circle processing is CoLevelBlowout, which is restricted (to include cities with greater than 10 active at some point in the data) to make CoLevelForCircles.&lt;br /&gt;
&lt;br /&gt;
We need to:&lt;br /&gt;
#Winsorize CoLevelBlowout&lt;br /&gt;
#Compute the circles!&lt;br /&gt;
#Make the Bay Area (over time) data&lt;br /&gt;
#Plot the Bay Area data (with colors per Bay Area city) for 1985 to present &lt;br /&gt;
#Combine the plots to make an animated gif&lt;br /&gt;
&lt;br /&gt;
To winsorize the data we need the formula for [https://en.wikipedia.org/wiki/Great-circle_distance Great Circle Distance]. The radius of the earth is 6,378km (half of diameter: 12,756 km). So: &lt;br /&gt;
 GCD = acos( sin(lat1) x sin(lat2) + cos(lat1) x cos(lat2) x cos(long1-long2) ) x r&lt;br /&gt;
&lt;br /&gt;
===Main Sources===&lt;br /&gt;
&lt;br /&gt;
The primary sources of data for this project are:&lt;br /&gt;
*SDC VentureXpert - from [[VC Database Rebuild]], the key table is '''&lt;br /&gt;
*GIS City Data&lt;br /&gt;
*Data on NSF, NIH, population, income, clinical trials, employment, schooling, R&amp;amp;D expenditures and revenue of firms can be found in [[Hubs]].&lt;br /&gt;
&lt;br /&gt;
===VC data===&lt;br /&gt;
&lt;br /&gt;
Data on the number of new vc backed firms in each city and year is in:&lt;br /&gt;
 Z:\Hubs\2017\clean data&lt;br /&gt;
 The name of the file is '''firm_nr.txt'''.&lt;br /&gt;
Database is cities&lt;br /&gt;
SQL script is: '''nr_firms.sql'''&lt;br /&gt;
&lt;br /&gt;
Raw data is in:&lt;br /&gt;
 Z:\VentureCapitalData\SDCVCData\vcdb2&lt;br /&gt;
 The file is '''colevelsimple.txt'''&lt;br /&gt;
&lt;br /&gt;
In order to see if there are outliers, I get the average coordinates for all cities and find the differences of the firm's coordinates from the city coordinate. &lt;br /&gt;
The script for the average city coordinates is in &lt;br /&gt;
 Z:\Hubs\2017\sql scripts and the file name is '''newcolevel.sql'''.&lt;br /&gt;
&lt;br /&gt;
The differences are taken in excel. The file containing the differences is in &lt;br /&gt;
 Z:\Hubs\2017 and the file name is '''new_colevel.txt'''.&lt;br /&gt;
&lt;br /&gt;
*Data on the circle area in each city and year is in:&lt;br /&gt;
 Z:\Hubs\2017\clean data&lt;br /&gt;
 The name of the file is '''circles.txt'''. (It contains only 106 observations)&lt;br /&gt;
&lt;br /&gt;
Database is cities&lt;br /&gt;
SQL script is: '''circles.sql'''&lt;br /&gt;
  &lt;br /&gt;
The script for joining the two tables on the VC table is in:&lt;br /&gt;
 Z:\Hubs\2017\sql scripts&lt;br /&gt;
  The name of the file is '''new_firm_nr_circles.sql'''&lt;br /&gt;
&lt;br /&gt;
*We use the cities with greater than 10 active VC backed firms. Data on the cities and number of active firms is in:&lt;br /&gt;
 E:\McNair\Projects\Hubs\Summer 2017&lt;br /&gt;
 The file is '''CitiesWithGT10Active.txt'''&lt;br /&gt;
&lt;br /&gt;
The script for joining the final data with this file is located in &lt;br /&gt;
 Z:\Hubs\2017\sql scripts&lt;br /&gt;
 The file name is '''final_joined_kerda.sql'''.&lt;br /&gt;
The final data is in &lt;br /&gt;
 Z:\Hubs\2017\clean data&lt;br /&gt;
 The file name is '''new_final_kerda.txt'''.&lt;br /&gt;
&lt;br /&gt;
===Accelerator data===&lt;br /&gt;
&lt;br /&gt;
Accelerators data is in &lt;br /&gt;
 Z:\Hubs\2017\clean data&lt;br /&gt;
 The file name is accelerators.txt&lt;br /&gt;
 The table is '''accelerators'''&lt;br /&gt;
The joined accelerators data with the VC table is in joined_accelerators table. &lt;br /&gt;
The script is in &lt;br /&gt;
 Z:\Hubs\2017\sql scripts&lt;br /&gt;
 The file name is '''join_accelerators.sql'''&lt;br /&gt;
&lt;br /&gt;
The do file is in &lt;br /&gt;
 Z:\Hubs\2017\kerda&lt;br /&gt;
 The name is '''agglomeartion_kerda.do'''&lt;br /&gt;
It includes the graphs, tables and the preliminary FE  regressions with VC funding amount and growth rate. &lt;br /&gt;
It also predicts the hazard rates, matches on the hazard rate in order to create synthetic control and treatment groups. &lt;br /&gt;
What is left to do is to add 2 lagged and 3 forward observations for the cities which do have a match.  Remove the overlapping observations for the years that get a treatment but which at the same time serve as a control. &lt;br /&gt;
&lt;br /&gt;
===See also===&lt;br /&gt;
&lt;br /&gt;
Also:&lt;br /&gt;
*[[Enclosing Circle Algorithm]]&lt;br /&gt;
*Normalizer&lt;br /&gt;
*Geocode.py&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Unbiased measure==&lt;br /&gt;
&lt;br /&gt;
The number of startups affects the total area of the circles according to some function. The task is to find an unbiased measure of the area, which is not affected by the number of the startups, given the size and their distribution.  &lt;br /&gt;
&lt;br /&gt;
For the unbiased calculation of a measure in a different context see: http://users.nber.org/~edegan/w/images/d/d0/Hall_(2005)_-_A_Note_On_The_Bias_In_Herfindahl_Type_Measures_Based_On_Count_Data.pdf&lt;br /&gt;
&lt;br /&gt;
==GIS Resources==&lt;br /&gt;
&lt;br /&gt;
*https://www.census.gov/geo/maps-data/data/tiger-line.html &lt;br /&gt;
*https://www.census.gov/geo/maps-data/data/tiger.html&lt;br /&gt;
*http://postgis.net/features/&lt;br /&gt;
*https://en.wikipedia.org/wiki/GIS_file_formats&lt;br /&gt;
&lt;br /&gt;
===Useful functions for spatial joins===&lt;br /&gt;
&lt;br /&gt;
 '''sum(expression)''': aggregate to return a sum for a set of records&lt;br /&gt;
 '''count(expression)''': aggregate to return the size of a set of records&lt;br /&gt;
 '''ST_Area(geometry)''' returns the area of the polygons&lt;br /&gt;
 '''ST_AsText(geometry)''' returns WKT text&lt;br /&gt;
 '''ST_Buffer(geometry, distance)''': For geometry: Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry. For geography: Uses a planar transform wrapper.&lt;br /&gt;
 '''ST_Contains(geometry A, geometry B)''' returns the true if geometry A contains geometry B&lt;br /&gt;
 '''ST_Distance(geometry A, geometry B)''' returns the minimum distance between geometry A and geometry B&lt;br /&gt;
 '''ST_DWithin(geometry A, geometry B, radius)''' returns the true if geometry A is radius distance or less from geometry B&lt;br /&gt;
 '''ST_GeomFromText(text)''' returns geometry&lt;br /&gt;
 '''ST_Intersection(geometry A, geometry B)''': Returns a geometry that represents the shared portion of geomA and geomB. The geography implementation does a transform to geometry to do the intersection and then transform back to WGS84&lt;br /&gt;
 '''ST_Intersects(geometry A, geometry B)''' returns the true if geometry A intersects geometry B&lt;br /&gt;
 '''ST_Length(linestring)''' returns the length of the linestring&lt;br /&gt;
 '''ST_Touches(geometry A, geometry B)''' returns the true if the boundary of geometry A touches geometry B&lt;br /&gt;
 '''ST_Within(geometry A, geometry B)''' returns the true if geometry A is within geometry B&lt;br /&gt;
 geometry_a '''&amp;amp;&amp;amp;''' geometry_b: Returns TRUE if A’s bounding box overlaps B’s.&lt;br /&gt;
 geometry_a '''=''' geometry_b: Returns TRUE if A’s bounding box is the same as B’s.&lt;br /&gt;
 '''ST_SetSRID(geometry, srid)''': Sets the SRID on a geometry to a particular integer value.&lt;br /&gt;
 '''ST_SRID(geometry)''': Returns the spatial reference identifier for the ST_Geometry as defined in spatial_ref_sys table.&lt;br /&gt;
 '''ST_Transform(geometry, srid)''': Returns a new geometry with its coordinates transformed to the SRID referenced by the integer parameter.&lt;br /&gt;
 '''ST_Union()''': Returns a geometry that represents the point set union of the Geometries.&lt;br /&gt;
 '''substring(string [from int] [for int])''': PostgreSQL string function to extract substring matching SQL regular expression.&lt;br /&gt;
 '''ST_Relate(geometry A, geometry B)''': Returns a text string representing the DE9IM relationship between the geometries.&lt;br /&gt;
 '''ST_GeoHash(geometry A)''': Returns a text string representing the GeoHash of the bounds of the object.&lt;br /&gt;
&lt;br /&gt;
===Native functions for geography===&lt;br /&gt;
&lt;br /&gt;
 '''ST_AsText(geography)''' returns text&lt;br /&gt;
 '''ST_GeographyFromText(text)''' returns geography&lt;br /&gt;
 '''ST_AsBinary(geography)''' returns bytea&lt;br /&gt;
 '''ST_GeogFromWKB(bytea)''' returns geography&lt;br /&gt;
 '''ST_AsSVG(geography)''' returns text&lt;br /&gt;
 '''ST_AsGML(geography)''' returns text&lt;br /&gt;
 '''ST_AsKML(geography)''' returns text&lt;br /&gt;
 '''ST_AsGeoJson(geography)''' returns text&lt;br /&gt;
 '''ST_Distance(geography, geography)''' returns double&lt;br /&gt;
 '''ST_DWithin(geography, geography, float8)''' returns boolean&lt;br /&gt;
 '''ST_Area(geography)''' returns double&lt;br /&gt;
 '''ST_Length(geography)''' returns double&lt;br /&gt;
 '''ST_Covers(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_CoveredBy(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Intersects(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Buffer(geography, float8)''' returns geography [1]&lt;br /&gt;
 '''ST_Intersection(geography, geography)''' returns geography [1]&lt;br /&gt;
&lt;br /&gt;
===Functions for Linear Referencing===&lt;br /&gt;
 '''ST_LineInterpolatePoint(geometry A, double measure)''': Returns a point interpolated along a line.&lt;br /&gt;
 '''ST_LineLocatePoint(geometry A, geometry B)''': Returns a float between 0 and 1 representing the location of the closest point on LineString to the given Point.&lt;br /&gt;
 '''ST_Line_Substring(geometry A, double from, double to)''': Return a linestring being a substring of the input one starting and ending at the given fractions of total 2d length.&lt;br /&gt;
 '''ST_Locate_Along_Measure(geometry A, double measure)''': Return a derived geometry collection value with elements that match the specified measure.&lt;br /&gt;
 '''ST_Locate_Between_Measures(geometry A, double from, double to)''': Return a derived geometry collection value with elements that match the specified range of measures inclusively.&lt;br /&gt;
 '''ST_AddMeasure(geometry A, double from, double to)''': Return a derived geometry with measure elements linearly interpolated between the start and end points. If the geometry has no measure dimension, one is added.&lt;br /&gt;
&lt;br /&gt;
===3-D Functions===&lt;br /&gt;
 '''ST_3DClosestPoint''' — Returns the 3-dimensional point on g1 that is closest to g2. This is the first point of the 3D shortest line.&lt;br /&gt;
 '''ST_3DDistance''' — For geometry type Returns the 3-dimensional cartesian minimum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DDWithin''' — For 3d (z) geometry type Returns true if two geometries 3d distance is within number of units.&lt;br /&gt;
 '''ST_3DDFullyWithin''' — Returns true if all of the 3D geometries are within the specified distance of one another.&lt;br /&gt;
 '''ST_3DIntersects''' — Returns TRUE if the Geometries “spatially intersect” in 3d - only for points and linestrings&lt;br /&gt;
 '''ST_3DLongestLine''' — Returns the 3-dimensional longest line between two geometries&lt;br /&gt;
 '''ST_3DMaxDistance''' — For geometry type Returns the 3-dimensional cartesian maximum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DShortestLine''' — Returns the 3-dimensional shortest line between two geometries&lt;br /&gt;
&lt;br /&gt;
===Relevant PostgreSQL Commands===&lt;br /&gt;
 '''\dt *.*''' Show all tables&lt;br /&gt;
 '''\q''' Exit table&lt;br /&gt;
&lt;br /&gt;
===Specifities/ Outliers to consider===&lt;br /&gt;
 New York (decompose)&lt;br /&gt;
 Princeton area (keep Princeton  unique)&lt;br /&gt;
 Reston, Virginia (keep)&lt;br /&gt;
 San Diego (include La Jolla)&lt;br /&gt;
 Silicon Valley (all distinct)&lt;br /&gt;
&lt;br /&gt;
===To make a circle===&lt;br /&gt;
&lt;br /&gt;
 SELECT ST_Buffer(''[desired point]'', ''[desired radius]'', 'quad_segs=8') &lt;br /&gt;
 FROM ''[desired table]''&lt;br /&gt;
quad_segs=8 indicates circle&lt;br /&gt;
&lt;br /&gt;
[[File: CirclePostGIS.png]]&lt;br /&gt;
&lt;br /&gt;
For more precision in circle:&lt;br /&gt;
 SELECT ST_Transform(geometry( &lt;br /&gt;
     ST_Buffer(geography( &lt;br /&gt;
         ST_Transform( ''[desired point]'', 4326 )), &lt;br /&gt;
             ''[desired radius]')), &lt;br /&gt;
             900913) FROM ''[desired table]''&lt;br /&gt;
4326 and 900913 represent particular precision.&lt;br /&gt;
&lt;br /&gt;
===Decimal Degrees===&lt;br /&gt;
&lt;br /&gt;
We are working with longitude and latitude in decimal degrees. See https://en.wikipedia.org/wiki/Decimal_degrees&lt;br /&gt;
&lt;br /&gt;
When converting radius to km, multiply by 111.3199. For area, multiple by (111.3199)^2=12,392.12013601.&lt;br /&gt;
&lt;br /&gt;
==Census Data==&lt;br /&gt;
&lt;br /&gt;
===Population===&lt;br /&gt;
&lt;br /&gt;
The Census Gazetteer files for 2010, 2000 and 1990 can give use population by census place. See https://www.census.gov/geo/maps-data/data/gazetteer.html&lt;br /&gt;
&lt;br /&gt;
 The places file contains data for all incorporated places and census designated places (CDPs) in the 50 states, the District of Columbia and Puerto Rico as of the January 1, 2010. The file is tab-delimited text, one line per record. Some records contain special characters.&lt;br /&gt;
 Download the National Places Gazetteer Files (1.2MB)&lt;br /&gt;
 Download the State-Based Places Gazetteer Files:&lt;br /&gt;
 Column	Label	Description&lt;br /&gt;
 Column 1	USPS	United States Postal Service State Abbreviation&lt;br /&gt;
 Column 2	GEOID	Geographic Identifier - fully concatenated geographic code (State FIPS and Place FIPS)&lt;br /&gt;
 Column 3	ANSICODE	American National Standards Insititute code&lt;br /&gt;
 Column 4	NAME	Name&lt;br /&gt;
 Column 5	LSAD	Legal/Statistical area descriptor.&lt;br /&gt;
 Column 6	FUNCSTAT	Functional status of entity.&lt;br /&gt;
 Column 7	POP10	2010 Census population count.&lt;br /&gt;
 Column 8	HU10	2010 Census housing unit count.&lt;br /&gt;
 Column 9	ALAND	Land Area (square meters) - Created for statistical purposes only.&lt;br /&gt;
 Column 10	AWATER	Water Area (square meters) - Created for statistical purposes only.&lt;br /&gt;
 Column 11	ALAND_SQMI	Land Area (square miles) - Created for statistical purposes only.&lt;br /&gt;
 Column 12	AWATER_SQMI	Water Area (square miles) - Created for statistical purposes only.&lt;br /&gt;
 Column 13	INTPTLAT	Latitude (decimal degrees) First character is blank or &amp;quot;-&amp;quot; denoting North or South latitude respectively&lt;br /&gt;
 Column 14	INTPTLONG	Longitude (decimal degrees) First character is blank or &amp;quot;-&amp;quot; denoting East or West longitude respectively.&lt;br /&gt;
&lt;br /&gt;
===Relationships===&lt;br /&gt;
&lt;br /&gt;
See https://www.census.gov/geo/maps-data/data/relationship.html&lt;br /&gt;
&lt;br /&gt;
These text files describe geographic relationships. There are two types of relationship files; those that show the relationship between the same type of geography over time (comparability) and those that show the relationship between two types of geography for the same time period.&lt;br /&gt;
&lt;br /&gt;
===ACS (American Community Survey) Data ===&lt;br /&gt;
&lt;br /&gt;
Steps to download:&lt;br /&gt;
&lt;br /&gt;
 1) Go to https://factfinder.census.gov/faces/nav/jsf/pages/download_center.xhtml&lt;br /&gt;
 2) Select 'I know the dataset or table(s) that I want to download.'&lt;br /&gt;
 3) Press Next&lt;br /&gt;
 4) For 'Select a program:' choose&lt;br /&gt;
        'American Community Survey'&lt;br /&gt;
 5) For 'Select a dataset and click Add to Your Selections:' choose&lt;br /&gt;
        '&amp;lt;YEAR OF INTEREST&amp;gt; ACS 1-year estimates'&lt;br /&gt;
 6) Press 'Add To Your Selections'&lt;br /&gt;
 7) Press Next&lt;br /&gt;
 8) For 'Select a geographic type:' choose&lt;br /&gt;
        'Place - 160'&lt;br /&gt;
 9) For Select a state:&lt;br /&gt;
        Don't choose a state, as we wish to download all.&lt;br /&gt;
 10) For 'Select one or more geographic areas...' choose&lt;br /&gt;
        'All Places within United States and Puerto Rico'&lt;br /&gt;
 11) Press Next&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
&lt;br /&gt;
Counts of firms by NAICS code at the county level may be useful: https://www2.census.gov/geo/pdfs/education/cbp12gdbs.pdf&lt;br /&gt;
&lt;br /&gt;
==Tax Increment Finance Zones==&lt;br /&gt;
&lt;br /&gt;
*State by state enabling statues: https://www.cdfa.net/cdfa/tifmap.nsf/index.html&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22431</id>
		<title>Jeemin Sim (Work Log)</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22431"/>
		<updated>2018-01-11T20:10:06Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Jeemin Sim]] [[Work Logs]] [[Jeemin Sim (WorkLog)|(log page)]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2018===&lt;br /&gt;
2017-01-11:&lt;br /&gt;
*Was briefed on [[Urban Start-up Agglomeration and Venture Capital Investment]]&lt;br /&gt;
*Going forward - running regressions in R in PostgreSQL and with desired layers (instead of levels)&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2017-12-05:&lt;br /&gt;
* Uploaded tables with KML files in TIF folder in bulk(E:) drive&lt;br /&gt;
** Allegheny County&lt;br /&gt;
** Atlanta&lt;br /&gt;
** Chicago&lt;br /&gt;
** Columbus, OH&lt;br /&gt;
** Dublin, OH&lt;br /&gt;
** Vermont&lt;br /&gt;
** Washington, D.C.&lt;br /&gt;
&lt;br /&gt;
*Updated documentation for: &lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/TIF_Project#Uploading_TIF_Data_onto_database_.28tigertest.29&lt;br /&gt;
&lt;br /&gt;
* shp2pgsql needs to be installed to upload Shapefiles to PostgreSQL database&lt;br /&gt;
** applies for Houston, TX and Dallas, TX&lt;br /&gt;
** DONE&lt;br /&gt;
&lt;br /&gt;
2017-12-04:&lt;br /&gt;
* To upload KML file into database with specified table name: &lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
* chicagotif table now resides in tigertest database&lt;br /&gt;
&lt;br /&gt;
2017-11-30:&lt;br /&gt;
* Displayed map with TIF districts and startups&lt;br /&gt;
* Location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\McNair_Color_Chicago_TIF_and_startups.png&lt;br /&gt;
* Added information and steps to ArcMap/ArcGIS documentation page&lt;br /&gt;
* Create a project page for 'Working with POSTGIS' and add instructions for uploading KML file onto POSTGIS&lt;br /&gt;
** Command used : &lt;br /&gt;
*** Logged in as : researcher@McNairDBServ&lt;br /&gt;
 /bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml &lt;br /&gt;
* chicago TIF kml file currently downloaded in tigertest with a table name of Layer0&lt;br /&gt;
** Figure out how to change layer name while loading kml file&lt;br /&gt;
** Instructions pulled from : http://wiki.wildsong.biz/index.php/Loading_data_into_PostGIS#Loading_data_from_KMZ_files&lt;br /&gt;
&lt;br /&gt;
2017-11-28:&lt;br /&gt;
* Created and edited [[ArcMap / ArcGIS Documentation]]&lt;br /&gt;
* Plotted points for TIFS and Startups in Chicago in one map.&lt;br /&gt;
** Location: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\Jeemin_Chicago_TIF_and_Startups_Attempt1&lt;br /&gt;
* Used https://mygeodata.cloud/result to convert from KML file to CSV (which was then saved as txt file to be uploaded onto ArcMap)&lt;br /&gt;
* Text files located in Local Disk (C:) Drive&lt;br /&gt;
&lt;br /&gt;
2017-11-27:&lt;br /&gt;
*Download Chicago TIF data&lt;br /&gt;
&lt;br /&gt;
2017-11-13:&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
2017-11-09: &lt;br /&gt;
* Notes on data downloaded:&lt;br /&gt;
** Year 2010-2012 data are based on total population, not 25 yrs or over (case for all other tables)&lt;br /&gt;
*** Record appears five times total, with same exact column name&lt;br /&gt;
***For exmaple: 'Total; Estimate; High school graduate (includes equivalency)' appears five times, with different values.&lt;br /&gt;
* TODO:&lt;br /&gt;
** Make Projects page for ACS Data&lt;br /&gt;
***[[American Community Survey (ACS) Data]]&lt;br /&gt;
&lt;br /&gt;
2017-11-07:&lt;br /&gt;
*Yesterday, narrowed down columns of interest from ACS_S1501_educationattain_2016 table.&lt;br /&gt;
&lt;br /&gt;
 Id&lt;br /&gt;
 Id2&lt;br /&gt;
 Geography&lt;br /&gt;
 Total; Estimate; Population 25 years and over&lt;br /&gt;
 Total; Estimate; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Associate's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Bachelor's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Percent high school graduate or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent high school graduate or higher&lt;br /&gt;
 Percent; Estimate; Percent bachelor's degree or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent bachelor's degree or higher&lt;br /&gt;
&lt;br /&gt;
*Complications:&lt;br /&gt;
**For csv files corresponding to years 2015 &amp;amp; 2016, all of the above columns exist.&lt;br /&gt;
**For csv files corresponding to years 2005 - 2014, no 'Percent' columns exist&lt;br /&gt;
*** Instead their 'Total' columns are percentage values&lt;br /&gt;
**For csv file corresponding to year 2005, columns regarding Graduate or professional degree are labeled differently.&lt;br /&gt;
**2012 data doesn't correspond to Population 25 years and over.&lt;br /&gt;
&lt;br /&gt;
*Temporary Solution:&lt;br /&gt;
**Since the above problems may be specific to this set of tables, will go through csv files and adjust columns.&lt;br /&gt;
&lt;br /&gt;
*Python script location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\pullCertainColumns.py&lt;br /&gt;
&lt;br /&gt;
2017-10-31:&lt;br /&gt;
* Finished doanloading files from ACS.&lt;br /&gt;
* Started loading tables into tigertest.&lt;br /&gt;
* Commands run could be found in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\DataLoading_SQL_Commands.txt&lt;br /&gt;
&lt;br /&gt;
2017-10-30:&lt;br /&gt;
* Downloaded data from ACS, to be continued&lt;br /&gt;
* File path: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data&lt;br /&gt;
* Fields of interest: &lt;br /&gt;
 S1401 SCHOOL ENROLLMENT&lt;br /&gt;
 S1501 EDUCATIONAL ATTAINMENT&lt;br /&gt;
 S2301 EMPLOYMENT STATUS&lt;br /&gt;
 B01003 TOTAL POPULATION&lt;br /&gt;
 B02001 RACE&lt;br /&gt;
 B07201 GEOGRAPHICAL MOBILITY&lt;br /&gt;
 B08303 TRAVEL TIME TO WORK&lt;br /&gt;
 B19013 MEDIAN HOUSEHOLD INCOME&lt;br /&gt;
 B19053 SELF-EMPLOYMENT INCOME IN THE PAST 12 MONTHS FOR HOUSEHOLDS&lt;br /&gt;
 B19083 GINI INDEX OF INCOME INEQUALITY&lt;br /&gt;
 B25003 TENURE&lt;br /&gt;
 B25105 MEDIAN MONTHLY HOUSING COSTS&lt;br /&gt;
 B28011 INTERNET SUBSCRIPTIONS IN HOUSEHOLD&lt;br /&gt;
 G001 GEOGRAPHIC IDENTIFIERS&lt;br /&gt;
&lt;br /&gt;
2017-10-23:&lt;br /&gt;
* Talked to Ed with Peter &amp;amp; Oliver about upcoming tasks &amp;amp; projects.&lt;br /&gt;
* Loaded acs_place table 2017 (does not contain population) on tigertest.&lt;br /&gt;
** SQL commands used:&lt;br /&gt;
&lt;br /&gt;
 DROP TABLE acs_place;&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE acs_place (&lt;br /&gt;
        USPS varchar(5),&lt;br /&gt;
        GEOID  varchar(30),&lt;br /&gt;
        ANSICODE varchar(30),&lt;br /&gt;
        NAME varchar(100),&lt;br /&gt;
        LSAD varchar(30),&lt;br /&gt;
        FUNCSTAT varchar(10),&lt;br /&gt;
        ALAND varchar(30),&lt;br /&gt;
        AWATER varchar(30),&lt;br /&gt;
        ALAND_SQMI varchar(30),&lt;br /&gt;
        AWATER_SQMI varchar(30),&lt;br /&gt;
        INTPTLAT varchar(30),&lt;br /&gt;
        INTPTLONG varchar(30)&lt;br /&gt;
 );&lt;br /&gt;
&lt;br /&gt;
 \COPY acs_place FROM '/bulk/2017_Gaz_place_national.txt';&lt;br /&gt;
 --COPY 29578&lt;br /&gt;
&lt;br /&gt;
* TODO:&lt;br /&gt;
** Find acs place 2016 data for population&lt;br /&gt;
** Find larger acs files, ideally at the place level&lt;br /&gt;
** Provide more documentation on POSTGIS &amp;amp; geocoding&lt;br /&gt;
&lt;br /&gt;
2017-10-16:&lt;br /&gt;
* Exported maps of points from the Bay Area each year. &lt;br /&gt;
** Map used location: E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year\BayAreaEveryYearMap&lt;br /&gt;
** Zoom scale: 1:650.000&lt;br /&gt;
* Location of Bay Area Points png files: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year&lt;br /&gt;
&lt;br /&gt;
2017-10-10:&lt;br /&gt;
*Discoveries/ Struggles regarding.gdb to .shp file conversion:&lt;br /&gt;
** Esri Production Mapping (costly)&lt;br /&gt;
*** License needs to be purchasesd: http://www.esri.com/software/arcgis/extensions/production-mapping/pricing&lt;br /&gt;
** Use ogr2ogr from gdal package&lt;br /&gt;
*** https://gis.stackexchange.com/questions/14432/migrating-geodatabase-data-into-postgis-without-esri-apps&lt;br /&gt;
*** Command: ogr2ogr -f &amp;quot;ESRI Shapefile&amp;quot; [Destination of shapefile] [path to gdb file]&lt;br /&gt;
*** Problem installing gdal&lt;br /&gt;
&lt;br /&gt;
2017-10-09:&lt;br /&gt;
* TODO'S:&lt;br /&gt;
** Downloading data onto tigertest&lt;br /&gt;
*** Road&lt;br /&gt;
*** Railway&lt;br /&gt;
*** Coastline&lt;br /&gt;
*** Instructions: http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Bulk_Download_TIGER_Shapefiles&lt;br /&gt;
** Configure census data from American Community Survey (ACS)&lt;br /&gt;
*** 1) Work out what data is of our interest (confirm ACS)&lt;br /&gt;
*** 2) Determine appropriate shape file unit: &lt;br /&gt;
**** census block vs. census block group vs. census track&lt;br /&gt;
*** 3) Load into tigertest&lt;br /&gt;
&lt;br /&gt;
* Done:&lt;br /&gt;
** Downloaded data from https://www.census.gov/cgi-bin/geo/shapefiles/index.php&lt;br /&gt;
  tl_2017_us_coastline -- 4209&lt;br /&gt;
  tl_2017_us_primaryroads -- 11574 &lt;br /&gt;
  tl_2017_us_rails -- 176237&lt;br /&gt;
** Link found to potentially download ACS data: https://www.census.gov/geo/maps-data/data/tiger-data.html&lt;br /&gt;
*** But most files on it come with .gdb extension and not .shp&lt;br /&gt;
&lt;br /&gt;
2017-10-03:&lt;br /&gt;
* Installed PostGIS &amp;amp; is now visible on pgAdmin III&lt;br /&gt;
&lt;br /&gt;
* ArcGIS (connect to postgis database):&lt;br /&gt;
** 1) Open ArcMap&lt;br /&gt;
** 2) Either open blank or open existing file/project&lt;br /&gt;
** 3) Click on 'Add Data' button with a cross and a yellow diamond (under Selection toolbar)&lt;br /&gt;
** 4) Go to the top-most directory by pressing on the arrow that points left-then-up (on the left of home button)&lt;br /&gt;
** 5) Click on 'Database Connections'&lt;br /&gt;
** 6) Click on 'Add Database Connection' (if Connection to localhost.sde) does not exist already)&lt;br /&gt;
** 7) Fill in the following fields:&lt;br /&gt;
*** Database Platform: PostgreSQL&lt;br /&gt;
*** Instance: localhost&lt;br /&gt;
*** User name: postgres&lt;br /&gt;
*** Password: &lt;br /&gt;
*** Database: tigertest&lt;br /&gt;
** 8) Press 'OK'&lt;br /&gt;
** 9) Now you'll have 'Connection to localhost.sde' in your Database Connections&lt;br /&gt;
** 10) Double click on 'Connection to localhost.sde'&lt;br /&gt;
** 11) Double click on the table of interest&lt;br /&gt;
** 12) Click 'Finish'&lt;br /&gt;
** 13) You'll see information populated on map, as one of the 'Layers'&lt;br /&gt;
*** Tested with: tigertest.public.copointplacescontains&lt;br /&gt;
&lt;br /&gt;
* On running &amp;amp; altering Oliver's script: &lt;br /&gt;
** Location: E:\McNair\Projects\OliverLovesCircles\src\python\vc_circles.py&lt;br /&gt;
** Ed manipulated file names so that underscores would replace dots (St.Louis --&amp;gt; St_Louis)&lt;br /&gt;
** Takes in instances and sweep times as part of the argument, but not impactful as those variables are hardcoded in the script&lt;br /&gt;
** Ran vc_circles.py with the following variables with changed values:&lt;br /&gt;
*** SWEEP_CYCLE_SECONDS = 10 (used to be 30)&lt;br /&gt;
*** NUMBER_INSTANCES = 16 (used to be 8)&lt;br /&gt;
** New output to be found in: E:\McNair\Projects\OliverLovesCircles\out&lt;br /&gt;
&lt;br /&gt;
2017-10-02:&lt;br /&gt;
* Talked to Harrison &amp;amp; Peter regarding ArcGIS&lt;br /&gt;
** Currently have points plotted on Houston&lt;br /&gt;
** Trouble interpreting geometry type, as currently reads in from text file&lt;br /&gt;
** Documents located in : E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS&lt;br /&gt;
* Attempted to install PostGIS spatial extention from PostgreSQL but getting 'spatial database creation failed' error message.&lt;br /&gt;
** Referenced instructions: &lt;br /&gt;
*** https://www.gpsfiledepot.com/tutorials/installing-and-setting-up-postgresql-with-postgis/&lt;br /&gt;
*** http://www.bostongis.com/PrinterFriendly.aspx?content_name=postgis_tut01&lt;br /&gt;
&lt;br /&gt;
2017-09-26:&lt;br /&gt;
* Created a table that maps a state to the database name.&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Translating_Table_names_to_corresponding_States&lt;br /&gt;
* Added more GIS-information (functions, realm &amp;amp; outliers to consider)&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration#GIS_Resources&lt;br /&gt;
* Visualization in PostGIS or connecting to ArcGIS for visualization (import/export data)&lt;br /&gt;
* Spatial indexing:&lt;br /&gt;
** http://revenant.ca/www/postgis/workshop/indexing.html&lt;br /&gt;
&lt;br /&gt;
2017-09-25:&lt;br /&gt;
* Talked to Ed about GIS, Census data, and going about determining the correctness of reported 'place.' Currently script makes a cross product of each reported place and an existing place, outputting a column of boolean value to indicate whether the reported place's coordinates fell within a place's geometric boundaries. One other way of going about this which we discussed is to first check if the reported place does fall within that place's boundaries. If it isn't, we'll go about the cross product method.&lt;br /&gt;
&lt;br /&gt;
* To add documentation : &lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration&lt;br /&gt;
&lt;br /&gt;
* Discussed the need to maintain venture capital database.&lt;br /&gt;
&lt;br /&gt;
*Relevant File paths:&lt;br /&gt;
**E:\McNair\Projects\Agglomeration\TestGIS.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\ProecssingCoLevelSimple.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\CitiesWithGT10Active.txt&lt;br /&gt;
&lt;br /&gt;
2017-09-21:&lt;br /&gt;
* Functions for Linear Referencing:&lt;br /&gt;
 '''ST_LineInterpolatePoint(geometry A, double measure)''': Returns a point interpolated along a line.&lt;br /&gt;
 '''ST_LineLocatePoint(geometry A, geometry B)''': Returns a float between 0 and 1 representing the location of the closest point on LineString to the given Point.&lt;br /&gt;
 '''ST_Line_Substring(geometry A, double from, double to)''': Return a linestring being a substring of the input one starting and ending at the given fractions of total 2d length.&lt;br /&gt;
 '''ST_Locate_Along_Measure(geometry A, double measure)''': Return a derived geometry collection value with elements that match the specified measure.&lt;br /&gt;
 '''ST_Locate_Between_Measures(geometry A, double from, double to)''': Return a derived geometry collection value with elements that match the specified range of measures inclusively.&lt;br /&gt;
 '''ST_AddMeasure(geometry A, double from, double to)''': Return a derived geometry with measure elements linearly interpolated between the start and end points. If the geometry has no measure dimension, one is added.&lt;br /&gt;
&lt;br /&gt;
*3-D Functions:&lt;br /&gt;
 '''ST_3DClosestPoint''' — Returns the 3-dimensional point on g1 that is closest to g2. This is the first point of the 3D shortest line.&lt;br /&gt;
 '''ST_3DDistance''' — For geometry type Returns the 3-dimensional cartesian minimum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DDWithin''' — For 3d (z) geometry type Returns true if two geometries 3d distance is within number of units.&lt;br /&gt;
 '''ST_3DDFullyWithin''' — Returns true if all of the 3D geometries are within the specified distance of one another.&lt;br /&gt;
 '''ST_3DIntersects''' — Returns TRUE if the Geometries “spatially intersect” in 3d - only for points and linestrings&lt;br /&gt;
 '''ST_3DLongestLine''' — Returns the 3-dimensional longest line between two geometries&lt;br /&gt;
 '''ST_3DMaxDistance''' — For geometry type Returns the 3-dimensional cartesian maximum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DShortestLine''' — Returns the 3-dimensional shortest line between two geometries&lt;br /&gt;
&lt;br /&gt;
*Relevant PostgreSQL Commands:&lt;br /&gt;
 '''\dt *.*''' Show all tables&lt;br /&gt;
 '''\q''' Exit table&lt;br /&gt;
&lt;br /&gt;
*Specifities/ Outliers to consider:&lt;br /&gt;
 New York (decompose)&lt;br /&gt;
 Princeton area (keep Princeton  unique)&lt;br /&gt;
 Reston, Virginia (keep)&lt;br /&gt;
 San Diego (include La Jolla)&lt;br /&gt;
 Silicon Valley (all distinct)&lt;br /&gt;
&lt;br /&gt;
* Continue reading from: https://postgis.net/docs/postgis_installation.html&lt;br /&gt;
&lt;br /&gt;
2017-09-20:&lt;br /&gt;
* Attended first intro to GIS course yesterday&lt;br /&gt;
* Updated above notes on GIS&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-19:&lt;br /&gt;
* Useful functions for spatial joins:&lt;br /&gt;
&lt;br /&gt;
 '''sum(expression)''': aggregate to return a sum for a set of records&lt;br /&gt;
 '''count(expression)''': aggregate to return the size of a set of records&lt;br /&gt;
 '''ST_Area(geometry)''' returns the area of the polygons&lt;br /&gt;
 '''ST_AsText(geometry)''' returns WKT text&lt;br /&gt;
 '''ST_Buffer(geometry, distance)''': For geometry: Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry. For geography: Uses a planar transform wrapper.&lt;br /&gt;
 '''ST_Contains(geometry A, geometry B)''' returns the true if geometry A contains geometry B&lt;br /&gt;
 '''ST_Distance(geometry A, geometry B)''' returns the minimum distance between geometry A and geometry B&lt;br /&gt;
 '''ST_DWithin(geometry A, geometry B, radius)''' returns the true if geometry A is radius distance or less from geometry B&lt;br /&gt;
 '''ST_GeomFromText(text)''' returns geometry&lt;br /&gt;
 '''ST_Intersection(geometry A, geometry B)''': Returns a geometry that represents the shared portion of geomA and geomB. The geography implementation does a transform to geometry to do the intersection and then transform back to WGS84&lt;br /&gt;
 '''ST_Intersects(geometry A, geometry B)''' returns the true if geometry A intersects geometry B&lt;br /&gt;
 '''ST_Length(linestring)''' returns the length of the linestring&lt;br /&gt;
 '''ST_Touches(geometry A, geometry B)''' returns the true if the boundary of geometry A touches geometry B&lt;br /&gt;
 '''ST_Within(geometry A, geometry B)''' returns the true if geometry A is within geometry B&lt;br /&gt;
 geometry_a '''&amp;amp;&amp;amp;''' geometry_b: Returns TRUE if A’s bounding box overlaps B’s.&lt;br /&gt;
 geometry_a '''=''' geometry_b: Returns TRUE if A’s bounding box is the same as B’s.&lt;br /&gt;
 '''ST_SetSRID(geometry, srid)''': Sets the SRID on a geometry to a particular integer value.&lt;br /&gt;
 '''ST_SRID(geometry)''': Returns the spatial reference identifier for the ST_Geometry as defined in spatial_ref_sys table.&lt;br /&gt;
 '''ST_Transform(geometry, srid)''': Returns a new geometry with its coordinates transformed to the SRID referenced by the integer parameter.&lt;br /&gt;
 '''ST_Union()''': Returns a geometry that represents the point set union of the Geometries.&lt;br /&gt;
 '''substring(string [from int] [for int])''': PostgreSQL string function to extract substring matching SQL regular expression.&lt;br /&gt;
 '''ST_Relate(geometry A, geometry B)''': Returns a text string representing the DE9IM relationship between the geometries.&lt;br /&gt;
 '''ST_GeoHash(geometry A)''': Returns a text string representing the GeoHash of the bounds of the object.&lt;br /&gt;
&lt;br /&gt;
*Native functions for geogrphy:&lt;br /&gt;
 '''ST_AsText(geography)''' returns text&lt;br /&gt;
 '''ST_GeographyFromText(text)''' returns geography&lt;br /&gt;
 '''ST_AsBinary(geography)''' returns bytea&lt;br /&gt;
 '''ST_GeogFromWKB(bytea)''' returns geography&lt;br /&gt;
 '''ST_AsSVG(geography)''' returns text&lt;br /&gt;
 '''ST_AsGML(geography)''' returns text&lt;br /&gt;
 '''ST_AsKML(geography)''' returns text&lt;br /&gt;
 '''ST_AsGeoJson(geography)''' returns text&lt;br /&gt;
 '''ST_Distance(geography, geography)''' returns double&lt;br /&gt;
 '''ST_DWithin(geography, geography, float8)''' returns boolean&lt;br /&gt;
 '''ST_Area(geography)''' returns double&lt;br /&gt;
 '''ST_Length(geography)''' returns double&lt;br /&gt;
 '''ST_Covers(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_CoveredBy(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Intersects(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Buffer(geography, float8)''' returns geography [1]&lt;br /&gt;
 '''ST_Intersection(geography, geography)''' returns geography [1]&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/geography.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-18:&lt;br /&gt;
* Read documentation on PostGIS and tiger geocoder&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/joins.html&lt;br /&gt;
&lt;br /&gt;
2017-09-12:&lt;br /&gt;
* Clarified University Matching output file.&lt;br /&gt;
* Helped Christy with pdf-reader, capturing keywords in readable format.&lt;br /&gt;
&lt;br /&gt;
2017-09-11:&lt;br /&gt;
* Ensured that documentation exists for the projects worked on last semester.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
&lt;br /&gt;
2017-04-17:&lt;br /&gt;
* To pull accelerators: Wrote simple python regex-based script that ran on organizations data.&lt;br /&gt;
 Code: E:\McNair\Projects\Accelerators\Crunchbase Snapshot\accelerator keywords.py&lt;br /&gt;
 Matched output (885 mathces) : E:\McNair\Projects\Accelerators\Crunchbase Snapshot\Jeemin_885_accel_matches&lt;br /&gt;
&lt;br /&gt;
2017-04-14:&lt;br /&gt;
* Loaded Federal Grants Data into database&lt;br /&gt;
&lt;br /&gt;
2017-04-12:&lt;br /&gt;
* Finishing up cleaning the columns for Federal Grant Data - NIH. The output excel files can be accessed at:&lt;br /&gt;
 E:\McNair\Projects\Federal Grant Data\NIH\Grants &lt;br /&gt;
 Titled:&lt;br /&gt;
     Jeemin_combined_files 1986-2001.csv&lt;br /&gt;
     Jeemin_combined_files 2002-2012.csv&lt;br /&gt;
     Jeemin_combined_files 2013-2015.csv&lt;br /&gt;
&lt;br /&gt;
* psql table formula:&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE all_grants (&lt;br /&gt;
  APPLICATION_ID integer,&lt;br /&gt;
  ACTIVITY varchar(3),&lt;br /&gt;
  ADMINISTERING_IC varchar(2),&lt;br /&gt;
  APPLICATION_TYPE varchar(1),&lt;br /&gt;
  ARRA_FUNDED varchar(1),&lt;br /&gt;
  AWARD_NOTICE_DATE date, &lt;br /&gt;
  BUDGET_START date,&lt;br /&gt;
  BUDGET_END date, &lt;br /&gt;
  CFDA_CODE varchar(3), &lt;br /&gt;
  CORE_PROJECT_NUM varchar(11),&lt;br /&gt;
  ED_INST_TYPE varchar(30), &lt;br /&gt;
  FOA_NUMBER varchar(13),&lt;br /&gt;
  FULL_PROJECT_NUM varchar(35),&lt;br /&gt;
  FUNDING_ICs varchar(40),&lt;br /&gt;
  FUNDING_MECHANISM varchar(23),&lt;br /&gt;
  FY smallint, &lt;br /&gt;
  IC_NAME varchar(77), &lt;br /&gt;
  NIH_SPENDING_CATS varchar(295), &lt;br /&gt;
  ORG_CITY varchar(20),&lt;br /&gt;
  ORG_COUNTRY varchar(16),&lt;br /&gt;
  ORG_DEPT varchar(30),&lt;br /&gt;
  ORG_DISTRICT smallint, &lt;br /&gt;
  ORG_DUNS integer,&lt;br /&gt;
  ORG_FIPS varchar(2), &lt;br /&gt;
  ORG_NAME varchar(60), &lt;br /&gt;
  ORG_STATE varchar(2), &lt;br /&gt;
  ORG_ZIPCODE integer, &lt;br /&gt;
  PHR varchar(200), &lt;br /&gt;
  PI_IDS varchar(30), &lt;br /&gt;
  PI_NAMEs varchar(200), &lt;br /&gt;
  PROGRAM_OFFICER_NAME varchar(36), &lt;br /&gt;
  PROJECT_START date, &lt;br /&gt;
  PROJECT_END date, &lt;br /&gt;
  PROJECT_TERMS varchar(200), &lt;br /&gt;
  PROJECT_TITLE varchar(244), &lt;br /&gt;
  SERIAL_NUMBER smallint,&lt;br /&gt;
  STUDY_SECTION varchar(4), &lt;br /&gt;
  STUDY_SECTION_NAME varchar(100), &lt;br /&gt;
  SUBPROJECT_ID smallint, &lt;br /&gt;
  SUFFIX varchar(2),&lt;br /&gt;
  SUPPORT_YEAR smallint, &lt;br /&gt;
  DIRECT_COST_AMT integer, &lt;br /&gt;
  INDIRECT_COST_AMT integer, &lt;br /&gt;
  TOTAL_COST integer, &lt;br /&gt;
  TOTAL_COST_SUB_PROJECT integer&lt;br /&gt;
 );&lt;br /&gt;
 \COPY all_grants FROM 'Jeemin_combined_files 1986-2001.csv' WITH DELIMITER AS E'\t' HEADER NULL AS ''CSV&lt;br /&gt;
&lt;br /&gt;
2017-03-29:&lt;br /&gt;
* Troubled by the variety of cases - separating keys by keywords will not work favorably when it hits University of California vs. University of Southern California case - find a way to match University of Southern California first (more specific ones first) - but how to generalize&lt;br /&gt;
&lt;br /&gt;
2017-03-27:&lt;br /&gt;
* Writing code for university matches - decided to go through keys instead of each dataitem. Use keywords in each key to go through the dataitem - misspellings are currently unaccounted for.&lt;br /&gt;
&lt;br /&gt;
2017-03-24:&lt;br /&gt;
* Discussed with Julia &amp;amp; Meghana about university keys to use to count # of occurrences, including aliases and misspellings&lt;br /&gt;
* Thoughts: to use a scoring metric with a key of UNIVERSITY OF CALIFORNIA SYSTEM, it should have a 'better' score when compared to MATHEMATICAL SCIENCES PUBLISHERS C/O UNIVERSITY OF CALIFORNIA BERKELEY or CALIFORNIA AT LOS ANGELES, UNVIERSITY OF than when compared to UNIVERSITY OF SOUTHERN CALIFORNIA, which may pose a challenge when attempting to implement this in a more general sense. In normalizing a string, strip &amp;quot;THE&amp;quot;, &amp;quot;,&amp;quot; and split words by spaces and compare each keyword from the two strings. Deciding on which strings to compare will be another issue - length (within some range maybe) could be an option. &lt;br /&gt;
* Federal Grant Data XML Parser was rerun - same output textfiles&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Read string matching &amp;amp; calculating distance, below are relevant links&lt;br /&gt;
* [http://www.cs.cmu.edu/~wcohen/postscript/ijcai-ws-2003.pdf]&lt;br /&gt;
* [http://web.archive.org/web/20081224234350/http://www.dcs.shef.ac.uk/~sam/stringmetrics.html]&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Talked to Julia about universal matcher, want to combine all University of California's to University of California, The Regents of&lt;br /&gt;
* Converted crunchbase2013 data from mySQL to PostgreSQL, but having trouble with the last table - cb_relationships, complains about syntax error at or near some places - but generally all tables exist in database called crunchbase&lt;br /&gt;
* Federal Grant Data XML Parser was run - the three output textfiles can be found in E:\McNair\Projects\Federal Grant Data\NSF&lt;br /&gt;
&lt;br /&gt;
2017-03-16:&lt;br /&gt;
* Further documented [[University Patent Matching]]&lt;br /&gt;
* Finished writing XML Parser&lt;br /&gt;
&lt;br /&gt;
2017-03-15:&lt;br /&gt;
* Todo: write a wikipage on possible input/output info on string matcher&lt;br /&gt;
* Wrote part of XML parser, extracted yearly data into E:\McNair\Projects\Federal Grant Data\NSF\NSF Extracted Data (up to year 2010)&lt;br /&gt;
&lt;br /&gt;
2017-03-14:&lt;br /&gt;
* Started pulling academy cases but there are too many cases to worry about, in terms of institution of interest. A document is located in E:\McNair\Projects\University Patents\academies_verify_cases.txt&lt;br /&gt;
* Need Julia/Meghana to look through the hits and see which are relevant &amp;amp; extract pattern from there. &lt;br /&gt;
* Having trouble outputting txt file without double quotes around every line. &lt;br /&gt;
* Thinking that one text file should be output for all keywords instead of having one each, to avoid overlap (ex) COLLEGE and UNIVERSITY are both keywords; ALBERT EINSTEIN COLLEGE OF YESHIVA UNIVERSITY will be hit twice if it were counted as two separate instances, one accounting for COLLEGE and the other for UNIVERSITY) - either in the form of if-elseif statements or one big regex check.&lt;br /&gt;
&lt;br /&gt;
2017-03-13:&lt;br /&gt;
* For University Patent Data Matching - matched SCHOOL (output: E:\McNair\Projects\University Patents\school_pulled_from_assignee_list_USA) and matched INSTITUTE(output: E:\McNair\Projects\University Patents\institute_pulled_from_assignee_list_USA). &lt;br /&gt;
* [[University Patent Matching]] &lt;br /&gt;
* To be worked on later: Grant XML parsing &amp;amp; general name matcher&lt;br /&gt;
&lt;br /&gt;
2017-03-08:&lt;br /&gt;
* Wrote regex pattern that identifies all &amp;quot;university&amp;quot; matchings - can be found in E:\McNair\Projects\University Patents\university_pulled_from_assignee_list_USA -- is an output file&lt;br /&gt;
* Talked to Sonia, but didn't come to solid conclusion on identifying whether key words associate with city or country by running a python function&lt;br /&gt;
* Output sql tables from finished run of Jeemin_FDATrial_as_key_data_ripping.py &lt;br /&gt;
* Ran through assigneelist_USA.txt to see how many different ways UNIVERSITY could be spelled wrong. There were many.&lt;br /&gt;
* Tried to logic through creating a pattern that could catch all different versions of UNIVERSITY. Discuss further on whether UNIVERSITIES and those that include UNIVERSITIES but include  INC in the end should be pulled as relevant information&lt;br /&gt;
&lt;br /&gt;
2017-03-06:&lt;br /&gt;
* [[Installing python in a database]]&lt;br /&gt;
* Added building Python function section to [[Working with PostgreSQL]] at the bottom of the page.&lt;br /&gt;
* Ran FDA Trial data ripping again, as the text output files were wiped. &lt;br /&gt;
* Plan on discussing with Julia and Meghana again about pulling universities and other relevant institutions from the Assignee List USA. &lt;br /&gt;
* Talked to Sonia about pulling city, state, zipcode information, hence python was installed in a database. Will work with Sonia on Wednesday afternoon and see how best a regex function could be implemented&lt;br /&gt;
&lt;br /&gt;
2017-03-03:&lt;br /&gt;
* Attempted to output sql tables&lt;br /&gt;
&lt;br /&gt;
2017-03-01:&lt;br /&gt;
* Started re-running Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
&lt;br /&gt;
2017-02-27:&lt;br /&gt;
* Finished producing tables from Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
* Talked to Julia about LinkedIn data extracting - to be discussed further with Julia &amp;amp; Peter.&lt;br /&gt;
* Started web crawler for Wikipedia - currently pulls Endowment, Academic staff, students, undergraduates, and postgraduates info found on Rice Wikipedia page. Can be found in : E:\McNair\Projects\University Patents\Jeemin_University_wikipedia_crawler.py&lt;br /&gt;
&lt;br /&gt;
2017-02-24:&lt;br /&gt;
* Continued working on producing multiple tables - first two are done. Was working on location, as there are multiple location tags per location.&lt;br /&gt;
&lt;br /&gt;
2017-02-22:&lt;br /&gt;
* Finished Jeemin_FDATrial_as_key_data_ripping.py (E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py), which outputs to E:\McNair\Projects\FDA Trials\Jeemin_Project\general_data_ripping_output.txt; TODO: output four different tables &amp;amp; replace the write in the same for-loop as going through each file&lt;br /&gt;
&lt;br /&gt;
2017-02-20:&lt;br /&gt;
* Continued working on Jeemin_FDATrial_as_key_data_ripping.py to find tags and place all of those information in a list. The other zipcode file did not finish executing after 2+ hours of running it - considering the possibility of splitting the record file into smaller bits, or running the processing on a faster machine.&lt;br /&gt;
&lt;br /&gt;
2017-02-17:&lt;br /&gt;
* Completed code for counting the number of occurrences for each unique zipcode. (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_Running_File.py). It has been running for 20+min because of the comprehensive XML data files. Meanwhile started coding to create a dictionary with the keys corresponding to each unique trial ID, mapped to every other information (location, sponsors, phase, drugs ...etc.) (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py).&lt;br /&gt;
&lt;br /&gt;
2017-02-15:&lt;br /&gt;
* Discussed with Catherine what to do with FDA Trial data and decided to have a dictionary with zip-codes as keys and number of trials occurred in that zipcode as values. Was still attempting to loop through the files without the code having to exist in the same directory as the XML files. Plan to write to excel via tsv, with zip-code as one column and # of occurrence as the other.&lt;br /&gt;
&lt;br /&gt;
2017-02-13:&lt;br /&gt;
* Goals (for trials): 1) Build ER Diagram 2) For each entity, get XML snippet 3) Build a parser/ripper for single file; the python parser can be found at: E:\McNair\Projects\FDA Trials\Jeemin_Project&lt;br /&gt;
&lt;br /&gt;
2017-02-08:&lt;br /&gt;
* Attempted to come up with possible cases for locating the description of accelerators - pick up from extracting bodies of text from the about page (given that it exists)&lt;br /&gt;
* [[Trial Data Project]]&lt;br /&gt;
&lt;br /&gt;
2017-02-06:&lt;br /&gt;
* Set up wikiPage &amp;amp; remote desktop. &lt;br /&gt;
* Started working on python version of web crawler. So far it successfully prints out a catchphrase/ description for one website. To be worked on. The python file can be found in: E:\McNair\Projects\Accelerators\Python WebCrawler\webcrawlerpython.py&lt;br /&gt;
&lt;br /&gt;
[[Category:Work Log]]&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22430</id>
		<title>Jeemin Sim (Work Log)</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22430"/>
		<updated>2018-01-11T20:09:10Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Jeemin Sim]] [[Work Logs]] [[Jeemin Sim (WorkLog)|(log page)]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2018===&lt;br /&gt;
2017-01-11:&lt;br /&gt;
*Was briefed on [[Urban Start-up Agglomeration and Venture Capital Investment]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2017-12-05:&lt;br /&gt;
* Uploaded tables with KML files in TIF folder in bulk(E:) drive&lt;br /&gt;
** Allegheny County&lt;br /&gt;
** Atlanta&lt;br /&gt;
** Chicago&lt;br /&gt;
** Columbus, OH&lt;br /&gt;
** Dublin, OH&lt;br /&gt;
** Vermont&lt;br /&gt;
** Washington, D.C.&lt;br /&gt;
&lt;br /&gt;
*Updated documentation for: &lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/TIF_Project#Uploading_TIF_Data_onto_database_.28tigertest.29&lt;br /&gt;
&lt;br /&gt;
* shp2pgsql needs to be installed to upload Shapefiles to PostgreSQL database&lt;br /&gt;
** applies for Houston, TX and Dallas, TX&lt;br /&gt;
** DONE&lt;br /&gt;
&lt;br /&gt;
2017-12-04:&lt;br /&gt;
* To upload KML file into database with specified table name: &lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
* chicagotif table now resides in tigertest database&lt;br /&gt;
&lt;br /&gt;
2017-11-30:&lt;br /&gt;
* Displayed map with TIF districts and startups&lt;br /&gt;
* Location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\McNair_Color_Chicago_TIF_and_startups.png&lt;br /&gt;
* Added information and steps to ArcMap/ArcGIS documentation page&lt;br /&gt;
* Create a project page for 'Working with POSTGIS' and add instructions for uploading KML file onto POSTGIS&lt;br /&gt;
** Command used : &lt;br /&gt;
*** Logged in as : researcher@McNairDBServ&lt;br /&gt;
 /bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml &lt;br /&gt;
* chicago TIF kml file currently downloaded in tigertest with a table name of Layer0&lt;br /&gt;
** Figure out how to change layer name while loading kml file&lt;br /&gt;
** Instructions pulled from : http://wiki.wildsong.biz/index.php/Loading_data_into_PostGIS#Loading_data_from_KMZ_files&lt;br /&gt;
&lt;br /&gt;
2017-11-28:&lt;br /&gt;
* Created and edited [[ArcMap / ArcGIS Documentation]]&lt;br /&gt;
* Plotted points for TIFS and Startups in Chicago in one map.&lt;br /&gt;
** Location: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\Jeemin_Chicago_TIF_and_Startups_Attempt1&lt;br /&gt;
* Used https://mygeodata.cloud/result to convert from KML file to CSV (which was then saved as txt file to be uploaded onto ArcMap)&lt;br /&gt;
* Text files located in Local Disk (C:) Drive&lt;br /&gt;
&lt;br /&gt;
2017-11-27:&lt;br /&gt;
*Download Chicago TIF data&lt;br /&gt;
&lt;br /&gt;
2017-11-13:&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
2017-11-09: &lt;br /&gt;
* Notes on data downloaded:&lt;br /&gt;
** Year 2010-2012 data are based on total population, not 25 yrs or over (case for all other tables)&lt;br /&gt;
*** Record appears five times total, with same exact column name&lt;br /&gt;
***For exmaple: 'Total; Estimate; High school graduate (includes equivalency)' appears five times, with different values.&lt;br /&gt;
* TODO:&lt;br /&gt;
** Make Projects page for ACS Data&lt;br /&gt;
***[[American Community Survey (ACS) Data]]&lt;br /&gt;
&lt;br /&gt;
2017-11-07:&lt;br /&gt;
*Yesterday, narrowed down columns of interest from ACS_S1501_educationattain_2016 table.&lt;br /&gt;
&lt;br /&gt;
 Id&lt;br /&gt;
 Id2&lt;br /&gt;
 Geography&lt;br /&gt;
 Total; Estimate; Population 25 years and over&lt;br /&gt;
 Total; Estimate; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Associate's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Bachelor's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Percent high school graduate or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent high school graduate or higher&lt;br /&gt;
 Percent; Estimate; Percent bachelor's degree or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent bachelor's degree or higher&lt;br /&gt;
&lt;br /&gt;
*Complications:&lt;br /&gt;
**For csv files corresponding to years 2015 &amp;amp; 2016, all of the above columns exist.&lt;br /&gt;
**For csv files corresponding to years 2005 - 2014, no 'Percent' columns exist&lt;br /&gt;
*** Instead their 'Total' columns are percentage values&lt;br /&gt;
**For csv file corresponding to year 2005, columns regarding Graduate or professional degree are labeled differently.&lt;br /&gt;
**2012 data doesn't correspond to Population 25 years and over.&lt;br /&gt;
&lt;br /&gt;
*Temporary Solution:&lt;br /&gt;
**Since the above problems may be specific to this set of tables, will go through csv files and adjust columns.&lt;br /&gt;
&lt;br /&gt;
*Python script location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\pullCertainColumns.py&lt;br /&gt;
&lt;br /&gt;
2017-10-31:&lt;br /&gt;
* Finished doanloading files from ACS.&lt;br /&gt;
* Started loading tables into tigertest.&lt;br /&gt;
* Commands run could be found in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\DataLoading_SQL_Commands.txt&lt;br /&gt;
&lt;br /&gt;
2017-10-30:&lt;br /&gt;
* Downloaded data from ACS, to be continued&lt;br /&gt;
* File path: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data&lt;br /&gt;
* Fields of interest: &lt;br /&gt;
 S1401 SCHOOL ENROLLMENT&lt;br /&gt;
 S1501 EDUCATIONAL ATTAINMENT&lt;br /&gt;
 S2301 EMPLOYMENT STATUS&lt;br /&gt;
 B01003 TOTAL POPULATION&lt;br /&gt;
 B02001 RACE&lt;br /&gt;
 B07201 GEOGRAPHICAL MOBILITY&lt;br /&gt;
 B08303 TRAVEL TIME TO WORK&lt;br /&gt;
 B19013 MEDIAN HOUSEHOLD INCOME&lt;br /&gt;
 B19053 SELF-EMPLOYMENT INCOME IN THE PAST 12 MONTHS FOR HOUSEHOLDS&lt;br /&gt;
 B19083 GINI INDEX OF INCOME INEQUALITY&lt;br /&gt;
 B25003 TENURE&lt;br /&gt;
 B25105 MEDIAN MONTHLY HOUSING COSTS&lt;br /&gt;
 B28011 INTERNET SUBSCRIPTIONS IN HOUSEHOLD&lt;br /&gt;
 G001 GEOGRAPHIC IDENTIFIERS&lt;br /&gt;
&lt;br /&gt;
2017-10-23:&lt;br /&gt;
* Talked to Ed with Peter &amp;amp; Oliver about upcoming tasks &amp;amp; projects.&lt;br /&gt;
* Loaded acs_place table 2017 (does not contain population) on tigertest.&lt;br /&gt;
** SQL commands used:&lt;br /&gt;
&lt;br /&gt;
 DROP TABLE acs_place;&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE acs_place (&lt;br /&gt;
        USPS varchar(5),&lt;br /&gt;
        GEOID  varchar(30),&lt;br /&gt;
        ANSICODE varchar(30),&lt;br /&gt;
        NAME varchar(100),&lt;br /&gt;
        LSAD varchar(30),&lt;br /&gt;
        FUNCSTAT varchar(10),&lt;br /&gt;
        ALAND varchar(30),&lt;br /&gt;
        AWATER varchar(30),&lt;br /&gt;
        ALAND_SQMI varchar(30),&lt;br /&gt;
        AWATER_SQMI varchar(30),&lt;br /&gt;
        INTPTLAT varchar(30),&lt;br /&gt;
        INTPTLONG varchar(30)&lt;br /&gt;
 );&lt;br /&gt;
&lt;br /&gt;
 \COPY acs_place FROM '/bulk/2017_Gaz_place_national.txt';&lt;br /&gt;
 --COPY 29578&lt;br /&gt;
&lt;br /&gt;
* TODO:&lt;br /&gt;
** Find acs place 2016 data for population&lt;br /&gt;
** Find larger acs files, ideally at the place level&lt;br /&gt;
** Provide more documentation on POSTGIS &amp;amp; geocoding&lt;br /&gt;
&lt;br /&gt;
2017-10-16:&lt;br /&gt;
* Exported maps of points from the Bay Area each year. &lt;br /&gt;
** Map used location: E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year\BayAreaEveryYearMap&lt;br /&gt;
** Zoom scale: 1:650.000&lt;br /&gt;
* Location of Bay Area Points png files: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year&lt;br /&gt;
&lt;br /&gt;
2017-10-10:&lt;br /&gt;
*Discoveries/ Struggles regarding.gdb to .shp file conversion:&lt;br /&gt;
** Esri Production Mapping (costly)&lt;br /&gt;
*** License needs to be purchasesd: http://www.esri.com/software/arcgis/extensions/production-mapping/pricing&lt;br /&gt;
** Use ogr2ogr from gdal package&lt;br /&gt;
*** https://gis.stackexchange.com/questions/14432/migrating-geodatabase-data-into-postgis-without-esri-apps&lt;br /&gt;
*** Command: ogr2ogr -f &amp;quot;ESRI Shapefile&amp;quot; [Destination of shapefile] [path to gdb file]&lt;br /&gt;
*** Problem installing gdal&lt;br /&gt;
&lt;br /&gt;
2017-10-09:&lt;br /&gt;
* TODO'S:&lt;br /&gt;
** Downloading data onto tigertest&lt;br /&gt;
*** Road&lt;br /&gt;
*** Railway&lt;br /&gt;
*** Coastline&lt;br /&gt;
*** Instructions: http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Bulk_Download_TIGER_Shapefiles&lt;br /&gt;
** Configure census data from American Community Survey (ACS)&lt;br /&gt;
*** 1) Work out what data is of our interest (confirm ACS)&lt;br /&gt;
*** 2) Determine appropriate shape file unit: &lt;br /&gt;
**** census block vs. census block group vs. census track&lt;br /&gt;
*** 3) Load into tigertest&lt;br /&gt;
&lt;br /&gt;
* Done:&lt;br /&gt;
** Downloaded data from https://www.census.gov/cgi-bin/geo/shapefiles/index.php&lt;br /&gt;
  tl_2017_us_coastline -- 4209&lt;br /&gt;
  tl_2017_us_primaryroads -- 11574 &lt;br /&gt;
  tl_2017_us_rails -- 176237&lt;br /&gt;
** Link found to potentially download ACS data: https://www.census.gov/geo/maps-data/data/tiger-data.html&lt;br /&gt;
*** But most files on it come with .gdb extension and not .shp&lt;br /&gt;
&lt;br /&gt;
2017-10-03:&lt;br /&gt;
* Installed PostGIS &amp;amp; is now visible on pgAdmin III&lt;br /&gt;
&lt;br /&gt;
* ArcGIS (connect to postgis database):&lt;br /&gt;
** 1) Open ArcMap&lt;br /&gt;
** 2) Either open blank or open existing file/project&lt;br /&gt;
** 3) Click on 'Add Data' button with a cross and a yellow diamond (under Selection toolbar)&lt;br /&gt;
** 4) Go to the top-most directory by pressing on the arrow that points left-then-up (on the left of home button)&lt;br /&gt;
** 5) Click on 'Database Connections'&lt;br /&gt;
** 6) Click on 'Add Database Connection' (if Connection to localhost.sde) does not exist already)&lt;br /&gt;
** 7) Fill in the following fields:&lt;br /&gt;
*** Database Platform: PostgreSQL&lt;br /&gt;
*** Instance: localhost&lt;br /&gt;
*** User name: postgres&lt;br /&gt;
*** Password: &lt;br /&gt;
*** Database: tigertest&lt;br /&gt;
** 8) Press 'OK'&lt;br /&gt;
** 9) Now you'll have 'Connection to localhost.sde' in your Database Connections&lt;br /&gt;
** 10) Double click on 'Connection to localhost.sde'&lt;br /&gt;
** 11) Double click on the table of interest&lt;br /&gt;
** 12) Click 'Finish'&lt;br /&gt;
** 13) You'll see information populated on map, as one of the 'Layers'&lt;br /&gt;
*** Tested with: tigertest.public.copointplacescontains&lt;br /&gt;
&lt;br /&gt;
* On running &amp;amp; altering Oliver's script: &lt;br /&gt;
** Location: E:\McNair\Projects\OliverLovesCircles\src\python\vc_circles.py&lt;br /&gt;
** Ed manipulated file names so that underscores would replace dots (St.Louis --&amp;gt; St_Louis)&lt;br /&gt;
** Takes in instances and sweep times as part of the argument, but not impactful as those variables are hardcoded in the script&lt;br /&gt;
** Ran vc_circles.py with the following variables with changed values:&lt;br /&gt;
*** SWEEP_CYCLE_SECONDS = 10 (used to be 30)&lt;br /&gt;
*** NUMBER_INSTANCES = 16 (used to be 8)&lt;br /&gt;
** New output to be found in: E:\McNair\Projects\OliverLovesCircles\out&lt;br /&gt;
&lt;br /&gt;
2017-10-02:&lt;br /&gt;
* Talked to Harrison &amp;amp; Peter regarding ArcGIS&lt;br /&gt;
** Currently have points plotted on Houston&lt;br /&gt;
** Trouble interpreting geometry type, as currently reads in from text file&lt;br /&gt;
** Documents located in : E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS&lt;br /&gt;
* Attempted to install PostGIS spatial extention from PostgreSQL but getting 'spatial database creation failed' error message.&lt;br /&gt;
** Referenced instructions: &lt;br /&gt;
*** https://www.gpsfiledepot.com/tutorials/installing-and-setting-up-postgresql-with-postgis/&lt;br /&gt;
*** http://www.bostongis.com/PrinterFriendly.aspx?content_name=postgis_tut01&lt;br /&gt;
&lt;br /&gt;
2017-09-26:&lt;br /&gt;
* Created a table that maps a state to the database name.&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Translating_Table_names_to_corresponding_States&lt;br /&gt;
* Added more GIS-information (functions, realm &amp;amp; outliers to consider)&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration#GIS_Resources&lt;br /&gt;
* Visualization in PostGIS or connecting to ArcGIS for visualization (import/export data)&lt;br /&gt;
* Spatial indexing:&lt;br /&gt;
** http://revenant.ca/www/postgis/workshop/indexing.html&lt;br /&gt;
&lt;br /&gt;
2017-09-25:&lt;br /&gt;
* Talked to Ed about GIS, Census data, and going about determining the correctness of reported 'place.' Currently script makes a cross product of each reported place and an existing place, outputting a column of boolean value to indicate whether the reported place's coordinates fell within a place's geometric boundaries. One other way of going about this which we discussed is to first check if the reported place does fall within that place's boundaries. If it isn't, we'll go about the cross product method.&lt;br /&gt;
&lt;br /&gt;
* To add documentation : &lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration&lt;br /&gt;
&lt;br /&gt;
* Discussed the need to maintain venture capital database.&lt;br /&gt;
&lt;br /&gt;
*Relevant File paths:&lt;br /&gt;
**E:\McNair\Projects\Agglomeration\TestGIS.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\ProecssingCoLevelSimple.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\CitiesWithGT10Active.txt&lt;br /&gt;
&lt;br /&gt;
2017-09-21:&lt;br /&gt;
* Functions for Linear Referencing:&lt;br /&gt;
 '''ST_LineInterpolatePoint(geometry A, double measure)''': Returns a point interpolated along a line.&lt;br /&gt;
 '''ST_LineLocatePoint(geometry A, geometry B)''': Returns a float between 0 and 1 representing the location of the closest point on LineString to the given Point.&lt;br /&gt;
 '''ST_Line_Substring(geometry A, double from, double to)''': Return a linestring being a substring of the input one starting and ending at the given fractions of total 2d length.&lt;br /&gt;
 '''ST_Locate_Along_Measure(geometry A, double measure)''': Return a derived geometry collection value with elements that match the specified measure.&lt;br /&gt;
 '''ST_Locate_Between_Measures(geometry A, double from, double to)''': Return a derived geometry collection value with elements that match the specified range of measures inclusively.&lt;br /&gt;
 '''ST_AddMeasure(geometry A, double from, double to)''': Return a derived geometry with measure elements linearly interpolated between the start and end points. If the geometry has no measure dimension, one is added.&lt;br /&gt;
&lt;br /&gt;
*3-D Functions:&lt;br /&gt;
 '''ST_3DClosestPoint''' — Returns the 3-dimensional point on g1 that is closest to g2. This is the first point of the 3D shortest line.&lt;br /&gt;
 '''ST_3DDistance''' — For geometry type Returns the 3-dimensional cartesian minimum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DDWithin''' — For 3d (z) geometry type Returns true if two geometries 3d distance is within number of units.&lt;br /&gt;
 '''ST_3DDFullyWithin''' — Returns true if all of the 3D geometries are within the specified distance of one another.&lt;br /&gt;
 '''ST_3DIntersects''' — Returns TRUE if the Geometries “spatially intersect” in 3d - only for points and linestrings&lt;br /&gt;
 '''ST_3DLongestLine''' — Returns the 3-dimensional longest line between two geometries&lt;br /&gt;
 '''ST_3DMaxDistance''' — For geometry type Returns the 3-dimensional cartesian maximum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DShortestLine''' — Returns the 3-dimensional shortest line between two geometries&lt;br /&gt;
&lt;br /&gt;
*Relevant PostgreSQL Commands:&lt;br /&gt;
 '''\dt *.*''' Show all tables&lt;br /&gt;
 '''\q''' Exit table&lt;br /&gt;
&lt;br /&gt;
*Specifities/ Outliers to consider:&lt;br /&gt;
 New York (decompose)&lt;br /&gt;
 Princeton area (keep Princeton  unique)&lt;br /&gt;
 Reston, Virginia (keep)&lt;br /&gt;
 San Diego (include La Jolla)&lt;br /&gt;
 Silicon Valley (all distinct)&lt;br /&gt;
&lt;br /&gt;
* Continue reading from: https://postgis.net/docs/postgis_installation.html&lt;br /&gt;
&lt;br /&gt;
2017-09-20:&lt;br /&gt;
* Attended first intro to GIS course yesterday&lt;br /&gt;
* Updated above notes on GIS&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-19:&lt;br /&gt;
* Useful functions for spatial joins:&lt;br /&gt;
&lt;br /&gt;
 '''sum(expression)''': aggregate to return a sum for a set of records&lt;br /&gt;
 '''count(expression)''': aggregate to return the size of a set of records&lt;br /&gt;
 '''ST_Area(geometry)''' returns the area of the polygons&lt;br /&gt;
 '''ST_AsText(geometry)''' returns WKT text&lt;br /&gt;
 '''ST_Buffer(geometry, distance)''': For geometry: Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry. For geography: Uses a planar transform wrapper.&lt;br /&gt;
 '''ST_Contains(geometry A, geometry B)''' returns the true if geometry A contains geometry B&lt;br /&gt;
 '''ST_Distance(geometry A, geometry B)''' returns the minimum distance between geometry A and geometry B&lt;br /&gt;
 '''ST_DWithin(geometry A, geometry B, radius)''' returns the true if geometry A is radius distance or less from geometry B&lt;br /&gt;
 '''ST_GeomFromText(text)''' returns geometry&lt;br /&gt;
 '''ST_Intersection(geometry A, geometry B)''': Returns a geometry that represents the shared portion of geomA and geomB. The geography implementation does a transform to geometry to do the intersection and then transform back to WGS84&lt;br /&gt;
 '''ST_Intersects(geometry A, geometry B)''' returns the true if geometry A intersects geometry B&lt;br /&gt;
 '''ST_Length(linestring)''' returns the length of the linestring&lt;br /&gt;
 '''ST_Touches(geometry A, geometry B)''' returns the true if the boundary of geometry A touches geometry B&lt;br /&gt;
 '''ST_Within(geometry A, geometry B)''' returns the true if geometry A is within geometry B&lt;br /&gt;
 geometry_a '''&amp;amp;&amp;amp;''' geometry_b: Returns TRUE if A’s bounding box overlaps B’s.&lt;br /&gt;
 geometry_a '''=''' geometry_b: Returns TRUE if A’s bounding box is the same as B’s.&lt;br /&gt;
 '''ST_SetSRID(geometry, srid)''': Sets the SRID on a geometry to a particular integer value.&lt;br /&gt;
 '''ST_SRID(geometry)''': Returns the spatial reference identifier for the ST_Geometry as defined in spatial_ref_sys table.&lt;br /&gt;
 '''ST_Transform(geometry, srid)''': Returns a new geometry with its coordinates transformed to the SRID referenced by the integer parameter.&lt;br /&gt;
 '''ST_Union()''': Returns a geometry that represents the point set union of the Geometries.&lt;br /&gt;
 '''substring(string [from int] [for int])''': PostgreSQL string function to extract substring matching SQL regular expression.&lt;br /&gt;
 '''ST_Relate(geometry A, geometry B)''': Returns a text string representing the DE9IM relationship between the geometries.&lt;br /&gt;
 '''ST_GeoHash(geometry A)''': Returns a text string representing the GeoHash of the bounds of the object.&lt;br /&gt;
&lt;br /&gt;
*Native functions for geogrphy:&lt;br /&gt;
 '''ST_AsText(geography)''' returns text&lt;br /&gt;
 '''ST_GeographyFromText(text)''' returns geography&lt;br /&gt;
 '''ST_AsBinary(geography)''' returns bytea&lt;br /&gt;
 '''ST_GeogFromWKB(bytea)''' returns geography&lt;br /&gt;
 '''ST_AsSVG(geography)''' returns text&lt;br /&gt;
 '''ST_AsGML(geography)''' returns text&lt;br /&gt;
 '''ST_AsKML(geography)''' returns text&lt;br /&gt;
 '''ST_AsGeoJson(geography)''' returns text&lt;br /&gt;
 '''ST_Distance(geography, geography)''' returns double&lt;br /&gt;
 '''ST_DWithin(geography, geography, float8)''' returns boolean&lt;br /&gt;
 '''ST_Area(geography)''' returns double&lt;br /&gt;
 '''ST_Length(geography)''' returns double&lt;br /&gt;
 '''ST_Covers(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_CoveredBy(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Intersects(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Buffer(geography, float8)''' returns geography [1]&lt;br /&gt;
 '''ST_Intersection(geography, geography)''' returns geography [1]&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/geography.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-18:&lt;br /&gt;
* Read documentation on PostGIS and tiger geocoder&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/joins.html&lt;br /&gt;
&lt;br /&gt;
2017-09-12:&lt;br /&gt;
* Clarified University Matching output file.&lt;br /&gt;
* Helped Christy with pdf-reader, capturing keywords in readable format.&lt;br /&gt;
&lt;br /&gt;
2017-09-11:&lt;br /&gt;
* Ensured that documentation exists for the projects worked on last semester.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
&lt;br /&gt;
2017-04-17:&lt;br /&gt;
* To pull accelerators: Wrote simple python regex-based script that ran on organizations data.&lt;br /&gt;
 Code: E:\McNair\Projects\Accelerators\Crunchbase Snapshot\accelerator keywords.py&lt;br /&gt;
 Matched output (885 mathces) : E:\McNair\Projects\Accelerators\Crunchbase Snapshot\Jeemin_885_accel_matches&lt;br /&gt;
&lt;br /&gt;
2017-04-14:&lt;br /&gt;
* Loaded Federal Grants Data into database&lt;br /&gt;
&lt;br /&gt;
2017-04-12:&lt;br /&gt;
* Finishing up cleaning the columns for Federal Grant Data - NIH. The output excel files can be accessed at:&lt;br /&gt;
 E:\McNair\Projects\Federal Grant Data\NIH\Grants &lt;br /&gt;
 Titled:&lt;br /&gt;
     Jeemin_combined_files 1986-2001.csv&lt;br /&gt;
     Jeemin_combined_files 2002-2012.csv&lt;br /&gt;
     Jeemin_combined_files 2013-2015.csv&lt;br /&gt;
&lt;br /&gt;
* psql table formula:&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE all_grants (&lt;br /&gt;
  APPLICATION_ID integer,&lt;br /&gt;
  ACTIVITY varchar(3),&lt;br /&gt;
  ADMINISTERING_IC varchar(2),&lt;br /&gt;
  APPLICATION_TYPE varchar(1),&lt;br /&gt;
  ARRA_FUNDED varchar(1),&lt;br /&gt;
  AWARD_NOTICE_DATE date, &lt;br /&gt;
  BUDGET_START date,&lt;br /&gt;
  BUDGET_END date, &lt;br /&gt;
  CFDA_CODE varchar(3), &lt;br /&gt;
  CORE_PROJECT_NUM varchar(11),&lt;br /&gt;
  ED_INST_TYPE varchar(30), &lt;br /&gt;
  FOA_NUMBER varchar(13),&lt;br /&gt;
  FULL_PROJECT_NUM varchar(35),&lt;br /&gt;
  FUNDING_ICs varchar(40),&lt;br /&gt;
  FUNDING_MECHANISM varchar(23),&lt;br /&gt;
  FY smallint, &lt;br /&gt;
  IC_NAME varchar(77), &lt;br /&gt;
  NIH_SPENDING_CATS varchar(295), &lt;br /&gt;
  ORG_CITY varchar(20),&lt;br /&gt;
  ORG_COUNTRY varchar(16),&lt;br /&gt;
  ORG_DEPT varchar(30),&lt;br /&gt;
  ORG_DISTRICT smallint, &lt;br /&gt;
  ORG_DUNS integer,&lt;br /&gt;
  ORG_FIPS varchar(2), &lt;br /&gt;
  ORG_NAME varchar(60), &lt;br /&gt;
  ORG_STATE varchar(2), &lt;br /&gt;
  ORG_ZIPCODE integer, &lt;br /&gt;
  PHR varchar(200), &lt;br /&gt;
  PI_IDS varchar(30), &lt;br /&gt;
  PI_NAMEs varchar(200), &lt;br /&gt;
  PROGRAM_OFFICER_NAME varchar(36), &lt;br /&gt;
  PROJECT_START date, &lt;br /&gt;
  PROJECT_END date, &lt;br /&gt;
  PROJECT_TERMS varchar(200), &lt;br /&gt;
  PROJECT_TITLE varchar(244), &lt;br /&gt;
  SERIAL_NUMBER smallint,&lt;br /&gt;
  STUDY_SECTION varchar(4), &lt;br /&gt;
  STUDY_SECTION_NAME varchar(100), &lt;br /&gt;
  SUBPROJECT_ID smallint, &lt;br /&gt;
  SUFFIX varchar(2),&lt;br /&gt;
  SUPPORT_YEAR smallint, &lt;br /&gt;
  DIRECT_COST_AMT integer, &lt;br /&gt;
  INDIRECT_COST_AMT integer, &lt;br /&gt;
  TOTAL_COST integer, &lt;br /&gt;
  TOTAL_COST_SUB_PROJECT integer&lt;br /&gt;
 );&lt;br /&gt;
 \COPY all_grants FROM 'Jeemin_combined_files 1986-2001.csv' WITH DELIMITER AS E'\t' HEADER NULL AS ''CSV&lt;br /&gt;
&lt;br /&gt;
2017-03-29:&lt;br /&gt;
* Troubled by the variety of cases - separating keys by keywords will not work favorably when it hits University of California vs. University of Southern California case - find a way to match University of Southern California first (more specific ones first) - but how to generalize&lt;br /&gt;
&lt;br /&gt;
2017-03-27:&lt;br /&gt;
* Writing code for university matches - decided to go through keys instead of each dataitem. Use keywords in each key to go through the dataitem - misspellings are currently unaccounted for.&lt;br /&gt;
&lt;br /&gt;
2017-03-24:&lt;br /&gt;
* Discussed with Julia &amp;amp; Meghana about university keys to use to count # of occurrences, including aliases and misspellings&lt;br /&gt;
* Thoughts: to use a scoring metric with a key of UNIVERSITY OF CALIFORNIA SYSTEM, it should have a 'better' score when compared to MATHEMATICAL SCIENCES PUBLISHERS C/O UNIVERSITY OF CALIFORNIA BERKELEY or CALIFORNIA AT LOS ANGELES, UNVIERSITY OF than when compared to UNIVERSITY OF SOUTHERN CALIFORNIA, which may pose a challenge when attempting to implement this in a more general sense. In normalizing a string, strip &amp;quot;THE&amp;quot;, &amp;quot;,&amp;quot; and split words by spaces and compare each keyword from the two strings. Deciding on which strings to compare will be another issue - length (within some range maybe) could be an option. &lt;br /&gt;
* Federal Grant Data XML Parser was rerun - same output textfiles&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Read string matching &amp;amp; calculating distance, below are relevant links&lt;br /&gt;
* [http://www.cs.cmu.edu/~wcohen/postscript/ijcai-ws-2003.pdf]&lt;br /&gt;
* [http://web.archive.org/web/20081224234350/http://www.dcs.shef.ac.uk/~sam/stringmetrics.html]&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Talked to Julia about universal matcher, want to combine all University of California's to University of California, The Regents of&lt;br /&gt;
* Converted crunchbase2013 data from mySQL to PostgreSQL, but having trouble with the last table - cb_relationships, complains about syntax error at or near some places - but generally all tables exist in database called crunchbase&lt;br /&gt;
* Federal Grant Data XML Parser was run - the three output textfiles can be found in E:\McNair\Projects\Federal Grant Data\NSF&lt;br /&gt;
&lt;br /&gt;
2017-03-16:&lt;br /&gt;
* Further documented [[University Patent Matching]]&lt;br /&gt;
* Finished writing XML Parser&lt;br /&gt;
&lt;br /&gt;
2017-03-15:&lt;br /&gt;
* Todo: write a wikipage on possible input/output info on string matcher&lt;br /&gt;
* Wrote part of XML parser, extracted yearly data into E:\McNair\Projects\Federal Grant Data\NSF\NSF Extracted Data (up to year 2010)&lt;br /&gt;
&lt;br /&gt;
2017-03-14:&lt;br /&gt;
* Started pulling academy cases but there are too many cases to worry about, in terms of institution of interest. A document is located in E:\McNair\Projects\University Patents\academies_verify_cases.txt&lt;br /&gt;
* Need Julia/Meghana to look through the hits and see which are relevant &amp;amp; extract pattern from there. &lt;br /&gt;
* Having trouble outputting txt file without double quotes around every line. &lt;br /&gt;
* Thinking that one text file should be output for all keywords instead of having one each, to avoid overlap (ex) COLLEGE and UNIVERSITY are both keywords; ALBERT EINSTEIN COLLEGE OF YESHIVA UNIVERSITY will be hit twice if it were counted as two separate instances, one accounting for COLLEGE and the other for UNIVERSITY) - either in the form of if-elseif statements or one big regex check.&lt;br /&gt;
&lt;br /&gt;
2017-03-13:&lt;br /&gt;
* For University Patent Data Matching - matched SCHOOL (output: E:\McNair\Projects\University Patents\school_pulled_from_assignee_list_USA) and matched INSTITUTE(output: E:\McNair\Projects\University Patents\institute_pulled_from_assignee_list_USA). &lt;br /&gt;
* [[University Patent Matching]] &lt;br /&gt;
* To be worked on later: Grant XML parsing &amp;amp; general name matcher&lt;br /&gt;
&lt;br /&gt;
2017-03-08:&lt;br /&gt;
* Wrote regex pattern that identifies all &amp;quot;university&amp;quot; matchings - can be found in E:\McNair\Projects\University Patents\university_pulled_from_assignee_list_USA -- is an output file&lt;br /&gt;
* Talked to Sonia, but didn't come to solid conclusion on identifying whether key words associate with city or country by running a python function&lt;br /&gt;
* Output sql tables from finished run of Jeemin_FDATrial_as_key_data_ripping.py &lt;br /&gt;
* Ran through assigneelist_USA.txt to see how many different ways UNIVERSITY could be spelled wrong. There were many.&lt;br /&gt;
* Tried to logic through creating a pattern that could catch all different versions of UNIVERSITY. Discuss further on whether UNIVERSITIES and those that include UNIVERSITIES but include  INC in the end should be pulled as relevant information&lt;br /&gt;
&lt;br /&gt;
2017-03-06:&lt;br /&gt;
* [[Installing python in a database]]&lt;br /&gt;
* Added building Python function section to [[Working with PostgreSQL]] at the bottom of the page.&lt;br /&gt;
* Ran FDA Trial data ripping again, as the text output files were wiped. &lt;br /&gt;
* Plan on discussing with Julia and Meghana again about pulling universities and other relevant institutions from the Assignee List USA. &lt;br /&gt;
* Talked to Sonia about pulling city, state, zipcode information, hence python was installed in a database. Will work with Sonia on Wednesday afternoon and see how best a regex function could be implemented&lt;br /&gt;
&lt;br /&gt;
2017-03-03:&lt;br /&gt;
* Attempted to output sql tables&lt;br /&gt;
&lt;br /&gt;
2017-03-01:&lt;br /&gt;
* Started re-running Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
&lt;br /&gt;
2017-02-27:&lt;br /&gt;
* Finished producing tables from Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
* Talked to Julia about LinkedIn data extracting - to be discussed further with Julia &amp;amp; Peter.&lt;br /&gt;
* Started web crawler for Wikipedia - currently pulls Endowment, Academic staff, students, undergraduates, and postgraduates info found on Rice Wikipedia page. Can be found in : E:\McNair\Projects\University Patents\Jeemin_University_wikipedia_crawler.py&lt;br /&gt;
&lt;br /&gt;
2017-02-24:&lt;br /&gt;
* Continued working on producing multiple tables - first two are done. Was working on location, as there are multiple location tags per location.&lt;br /&gt;
&lt;br /&gt;
2017-02-22:&lt;br /&gt;
* Finished Jeemin_FDATrial_as_key_data_ripping.py (E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py), which outputs to E:\McNair\Projects\FDA Trials\Jeemin_Project\general_data_ripping_output.txt; TODO: output four different tables &amp;amp; replace the write in the same for-loop as going through each file&lt;br /&gt;
&lt;br /&gt;
2017-02-20:&lt;br /&gt;
* Continued working on Jeemin_FDATrial_as_key_data_ripping.py to find tags and place all of those information in a list. The other zipcode file did not finish executing after 2+ hours of running it - considering the possibility of splitting the record file into smaller bits, or running the processing on a faster machine.&lt;br /&gt;
&lt;br /&gt;
2017-02-17:&lt;br /&gt;
* Completed code for counting the number of occurrences for each unique zipcode. (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_Running_File.py). It has been running for 20+min because of the comprehensive XML data files. Meanwhile started coding to create a dictionary with the keys corresponding to each unique trial ID, mapped to every other information (location, sponsors, phase, drugs ...etc.) (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py).&lt;br /&gt;
&lt;br /&gt;
2017-02-15:&lt;br /&gt;
* Discussed with Catherine what to do with FDA Trial data and decided to have a dictionary with zip-codes as keys and number of trials occurred in that zipcode as values. Was still attempting to loop through the files without the code having to exist in the same directory as the XML files. Plan to write to excel via tsv, with zip-code as one column and # of occurrence as the other.&lt;br /&gt;
&lt;br /&gt;
2017-02-13:&lt;br /&gt;
* Goals (for trials): 1) Build ER Diagram 2) For each entity, get XML snippet 3) Build a parser/ripper for single file; the python parser can be found at: E:\McNair\Projects\FDA Trials\Jeemin_Project&lt;br /&gt;
&lt;br /&gt;
2017-02-08:&lt;br /&gt;
* Attempted to come up with possible cases for locating the description of accelerators - pick up from extracting bodies of text from the about page (given that it exists)&lt;br /&gt;
* [[Trial Data Project]]&lt;br /&gt;
&lt;br /&gt;
2017-02-06:&lt;br /&gt;
* Set up wikiPage &amp;amp; remote desktop. &lt;br /&gt;
* Started working on python version of web crawler. So far it successfully prints out a catchphrase/ description for one website. To be worked on. The python file can be found in: E:\McNair\Projects\Accelerators\Python WebCrawler\webcrawlerpython.py&lt;br /&gt;
&lt;br /&gt;
[[Category:Work Log]]&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22316</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22316"/>
		<updated>2017-12-07T17:12:17Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Dallas, TX */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a table ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago: Included ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, approval_d, expiration&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta: Included ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, start_, (say that end is 2020)&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH: Included ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, ord_date, exp_date&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX: Included ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: geom, created_da, (assume 2020 as end date)&lt;br /&gt;
&lt;br /&gt;
=== Houston, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: houstontif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                 Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+-----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('houstontif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 perimeter  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 name       | character varying(25)  |           |          |                                         | extended |              | &lt;br /&gt;
 siteno     | integer                |           |          |                                         | plain    |              | &lt;br /&gt;
 cohgis_coh | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 cohgis_c_1 | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                         | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22315</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22315"/>
		<updated>2017-12-07T17:12:03Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Dublin, OH */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a table ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago: Included ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, approval_d, expiration&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta: Included ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, start_, (say that end is 2020)&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH: Included ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, ord_date, exp_date&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: geom, created_da, (assume 2020 as end date)&lt;br /&gt;
&lt;br /&gt;
=== Houston, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: houstontif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                 Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+-----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('houstontif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 perimeter  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 name       | character varying(25)  |           |          |                                         | extended |              | &lt;br /&gt;
 siteno     | integer                |           |          |                                         | plain    |              | &lt;br /&gt;
 cohgis_coh | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 cohgis_c_1 | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                         | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22314</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22314"/>
		<updated>2017-12-07T17:11:50Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Atlanta */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a table ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago: Included ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, approval_d, expiration&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta: Included ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, start_, (say that end is 2020)&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, ord_date, exp_date&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: geom, created_da, (assume 2020 as end date)&lt;br /&gt;
&lt;br /&gt;
=== Houston, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: houstontif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                 Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+-----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('houstontif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 perimeter  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 name       | character varying(25)  |           |          |                                         | extended |              | &lt;br /&gt;
 siteno     | integer                |           |          |                                         | plain    |              | &lt;br /&gt;
 cohgis_coh | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 cohgis_c_1 | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                         | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22313</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22313"/>
		<updated>2017-12-07T17:11:36Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Chicago */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a table ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago: Included ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, approval_d, expiration&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, start_, (say that end is 2020)&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, ord_date, exp_date&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: geom, created_da, (assume 2020 as end date)&lt;br /&gt;
&lt;br /&gt;
=== Houston, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: houstontif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                 Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+-----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('houstontif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 perimeter  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 name       | character varying(25)  |           |          |                                         | extended |              | &lt;br /&gt;
 siteno     | integer                |           |          |                                         | plain    |              | &lt;br /&gt;
 cohgis_coh | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 cohgis_c_1 | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                         | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22312</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22312"/>
		<updated>2017-12-07T17:11:04Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Dallas, TX */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a table ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, approval_d, expiration&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, start_, (say that end is 2020)&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, ord_date, exp_date&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: geom, created_da, (assume 2020 as end date)&lt;br /&gt;
&lt;br /&gt;
=== Houston, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: houstontif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                 Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+-----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('houstontif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 perimeter  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 name       | character varying(25)  |           |          |                                         | extended |              | &lt;br /&gt;
 siteno     | integer                |           |          |                                         | plain    |              | &lt;br /&gt;
 cohgis_coh | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 cohgis_c_1 | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                         | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22311</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22311"/>
		<updated>2017-12-07T17:09:38Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Dublin, OH */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a table ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, approval_d, expiration&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, start_, (say that end is 2020)&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, ord_date, exp_date&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;br /&gt;
&lt;br /&gt;
=== Houston, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: houstontif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                 Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+-----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('houstontif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 perimeter  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 name       | character varying(25)  |           |          |                                         | extended |              | &lt;br /&gt;
 siteno     | integer                |           |          |                                         | plain    |              | &lt;br /&gt;
 cohgis_coh | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 cohgis_c_1 | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                         | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22310</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22310"/>
		<updated>2017-12-07T16:57:42Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Atlanta */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a table ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, approval_d, expiration&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, start_, (say that end is 2020)&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;br /&gt;
&lt;br /&gt;
=== Houston, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: houstontif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                 Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+-----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('houstontif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 perimeter  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 name       | character varying(25)  |           |          |                                         | extended |              | &lt;br /&gt;
 siteno     | integer                |           |          |                                         | plain    |              | &lt;br /&gt;
 cohgis_coh | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 cohgis_c_1 | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                         | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22309</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22309"/>
		<updated>2017-12-07T16:55:40Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Chicago */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a table ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
 pull columns: wkb_geometry, approval_d, expiration&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;br /&gt;
&lt;br /&gt;
=== Houston, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: houstontif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                 Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+-----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('houstontif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 perimeter  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 name       | character varying(25)  |           |          |                                         | extended |              | &lt;br /&gt;
 siteno     | integer                |           |          |                                         | plain    |              | &lt;br /&gt;
 cohgis_coh | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 cohgis_c_1 | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                         | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22308</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22308"/>
		<updated>2017-12-07T15:25:53Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* To view all columns of a tale */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a table ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;br /&gt;
&lt;br /&gt;
=== Houston, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: houstontif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                 Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+-----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('houstontif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 perimeter  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 name       | character varying(25)  |           |          |                                         | extended |              | &lt;br /&gt;
 siteno     | integer                |           |          |                                         | plain    |              | &lt;br /&gt;
 cohgis_coh | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 cohgis_c_1 | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                         | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22303</id>
		<title>Jeemin Sim (Work Log)</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22303"/>
		<updated>2017-12-05T18:24:44Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Fall 2017 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Jeemin Sim]] [[Work Logs]] [[Jeemin Sim (WorkLog)|(log page)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2017-12-05:&lt;br /&gt;
* Uploaded tables with KML files in TIF folder in bulk(E:) drive&lt;br /&gt;
** Allegheny County&lt;br /&gt;
** Atlanta&lt;br /&gt;
** Chicago&lt;br /&gt;
** Columbus, OH&lt;br /&gt;
** Dublin, OH&lt;br /&gt;
** Vermont&lt;br /&gt;
** Washington, D.C.&lt;br /&gt;
&lt;br /&gt;
*Updated documentation for: &lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/TIF_Project#Uploading_TIF_Data_onto_database_.28tigertest.29&lt;br /&gt;
&lt;br /&gt;
* shp2pgsql needs to be installed to upload Shapefiles to PostgreSQL database&lt;br /&gt;
** applies for Houston, TX and Dallas, TX&lt;br /&gt;
** DONE&lt;br /&gt;
&lt;br /&gt;
2017-12-04:&lt;br /&gt;
* To upload KML file into database with specified table name: &lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
* chicagotif table now resides in tigertest database&lt;br /&gt;
&lt;br /&gt;
2017-11-30:&lt;br /&gt;
* Displayed map with TIF districts and startups&lt;br /&gt;
* Location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\McNair_Color_Chicago_TIF_and_startups.png&lt;br /&gt;
* Added information and steps to ArcMap/ArcGIS documentation page&lt;br /&gt;
* Create a project page for 'Working with POSTGIS' and add instructions for uploading KML file onto POSTGIS&lt;br /&gt;
** Command used : &lt;br /&gt;
*** Logged in as : researcher@McNairDBServ&lt;br /&gt;
 /bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml &lt;br /&gt;
* chicago TIF kml file currently downloaded in tigertest with a table name of Layer0&lt;br /&gt;
** Figure out how to change layer name while loading kml file&lt;br /&gt;
** Instructions pulled from : http://wiki.wildsong.biz/index.php/Loading_data_into_PostGIS#Loading_data_from_KMZ_files&lt;br /&gt;
&lt;br /&gt;
2017-11-28:&lt;br /&gt;
* Created and edited [[ArcMap / ArcGIS Documentation]]&lt;br /&gt;
* Plotted points for TIFS and Startups in Chicago in one map.&lt;br /&gt;
** Location: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\Jeemin_Chicago_TIF_and_Startups_Attempt1&lt;br /&gt;
* Used https://mygeodata.cloud/result to convert from KML file to CSV (which was then saved as txt file to be uploaded onto ArcMap)&lt;br /&gt;
* Text files located in Local Disk (C:) Drive&lt;br /&gt;
&lt;br /&gt;
2017-11-27:&lt;br /&gt;
*Download Chicago TIF data&lt;br /&gt;
&lt;br /&gt;
2017-11-13:&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
2017-11-09: &lt;br /&gt;
* Notes on data downloaded:&lt;br /&gt;
** Year 2010-2012 data are based on total population, not 25 yrs or over (case for all other tables)&lt;br /&gt;
*** Record appears five times total, with same exact column name&lt;br /&gt;
***For exmaple: 'Total; Estimate; High school graduate (includes equivalency)' appears five times, with different values.&lt;br /&gt;
* TODO:&lt;br /&gt;
** Make Projects page for ACS Data&lt;br /&gt;
***[[American Community Survey (ACS) Data]]&lt;br /&gt;
&lt;br /&gt;
2017-11-07:&lt;br /&gt;
*Yesterday, narrowed down columns of interest from ACS_S1501_educationattain_2016 table.&lt;br /&gt;
&lt;br /&gt;
 Id&lt;br /&gt;
 Id2&lt;br /&gt;
 Geography&lt;br /&gt;
 Total; Estimate; Population 25 years and over&lt;br /&gt;
 Total; Estimate; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Associate's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Bachelor's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Percent high school graduate or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent high school graduate or higher&lt;br /&gt;
 Percent; Estimate; Percent bachelor's degree or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent bachelor's degree or higher&lt;br /&gt;
&lt;br /&gt;
*Complications:&lt;br /&gt;
**For csv files corresponding to years 2015 &amp;amp; 2016, all of the above columns exist.&lt;br /&gt;
**For csv files corresponding to years 2005 - 2014, no 'Percent' columns exist&lt;br /&gt;
*** Instead their 'Total' columns are percentage values&lt;br /&gt;
**For csv file corresponding to year 2005, columns regarding Graduate or professional degree are labeled differently.&lt;br /&gt;
**2012 data doesn't correspond to Population 25 years and over.&lt;br /&gt;
&lt;br /&gt;
*Temporary Solution:&lt;br /&gt;
**Since the above problems may be specific to this set of tables, will go through csv files and adjust columns.&lt;br /&gt;
&lt;br /&gt;
*Python script location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\pullCertainColumns.py&lt;br /&gt;
&lt;br /&gt;
2017-10-31:&lt;br /&gt;
* Finished doanloading files from ACS.&lt;br /&gt;
* Started loading tables into tigertest.&lt;br /&gt;
* Commands run could be found in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\DataLoading_SQL_Commands.txt&lt;br /&gt;
&lt;br /&gt;
2017-10-30:&lt;br /&gt;
* Downloaded data from ACS, to be continued&lt;br /&gt;
* File path: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data&lt;br /&gt;
* Fields of interest: &lt;br /&gt;
 S1401 SCHOOL ENROLLMENT&lt;br /&gt;
 S1501 EDUCATIONAL ATTAINMENT&lt;br /&gt;
 S2301 EMPLOYMENT STATUS&lt;br /&gt;
 B01003 TOTAL POPULATION&lt;br /&gt;
 B02001 RACE&lt;br /&gt;
 B07201 GEOGRAPHICAL MOBILITY&lt;br /&gt;
 B08303 TRAVEL TIME TO WORK&lt;br /&gt;
 B19013 MEDIAN HOUSEHOLD INCOME&lt;br /&gt;
 B19053 SELF-EMPLOYMENT INCOME IN THE PAST 12 MONTHS FOR HOUSEHOLDS&lt;br /&gt;
 B19083 GINI INDEX OF INCOME INEQUALITY&lt;br /&gt;
 B25003 TENURE&lt;br /&gt;
 B25105 MEDIAN MONTHLY HOUSING COSTS&lt;br /&gt;
 B28011 INTERNET SUBSCRIPTIONS IN HOUSEHOLD&lt;br /&gt;
 G001 GEOGRAPHIC IDENTIFIERS&lt;br /&gt;
&lt;br /&gt;
2017-10-23:&lt;br /&gt;
* Talked to Ed with Peter &amp;amp; Oliver about upcoming tasks &amp;amp; projects.&lt;br /&gt;
* Loaded acs_place table 2017 (does not contain population) on tigertest.&lt;br /&gt;
** SQL commands used:&lt;br /&gt;
&lt;br /&gt;
 DROP TABLE acs_place;&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE acs_place (&lt;br /&gt;
        USPS varchar(5),&lt;br /&gt;
        GEOID  varchar(30),&lt;br /&gt;
        ANSICODE varchar(30),&lt;br /&gt;
        NAME varchar(100),&lt;br /&gt;
        LSAD varchar(30),&lt;br /&gt;
        FUNCSTAT varchar(10),&lt;br /&gt;
        ALAND varchar(30),&lt;br /&gt;
        AWATER varchar(30),&lt;br /&gt;
        ALAND_SQMI varchar(30),&lt;br /&gt;
        AWATER_SQMI varchar(30),&lt;br /&gt;
        INTPTLAT varchar(30),&lt;br /&gt;
        INTPTLONG varchar(30)&lt;br /&gt;
 );&lt;br /&gt;
&lt;br /&gt;
 \COPY acs_place FROM '/bulk/2017_Gaz_place_national.txt';&lt;br /&gt;
 --COPY 29578&lt;br /&gt;
&lt;br /&gt;
* TODO:&lt;br /&gt;
** Find acs place 2016 data for population&lt;br /&gt;
** Find larger acs files, ideally at the place level&lt;br /&gt;
** Provide more documentation on POSTGIS &amp;amp; geocoding&lt;br /&gt;
&lt;br /&gt;
2017-10-16:&lt;br /&gt;
* Exported maps of points from the Bay Area each year. &lt;br /&gt;
** Map used location: E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year\BayAreaEveryYearMap&lt;br /&gt;
** Zoom scale: 1:650.000&lt;br /&gt;
* Location of Bay Area Points png files: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year&lt;br /&gt;
&lt;br /&gt;
2017-10-10:&lt;br /&gt;
*Discoveries/ Struggles regarding.gdb to .shp file conversion:&lt;br /&gt;
** Esri Production Mapping (costly)&lt;br /&gt;
*** License needs to be purchasesd: http://www.esri.com/software/arcgis/extensions/production-mapping/pricing&lt;br /&gt;
** Use ogr2ogr from gdal package&lt;br /&gt;
*** https://gis.stackexchange.com/questions/14432/migrating-geodatabase-data-into-postgis-without-esri-apps&lt;br /&gt;
*** Command: ogr2ogr -f &amp;quot;ESRI Shapefile&amp;quot; [Destination of shapefile] [path to gdb file]&lt;br /&gt;
*** Problem installing gdal&lt;br /&gt;
&lt;br /&gt;
2017-10-09:&lt;br /&gt;
* TODO'S:&lt;br /&gt;
** Downloading data onto tigertest&lt;br /&gt;
*** Road&lt;br /&gt;
*** Railway&lt;br /&gt;
*** Coastline&lt;br /&gt;
*** Instructions: http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Bulk_Download_TIGER_Shapefiles&lt;br /&gt;
** Configure census data from American Community Survey (ACS)&lt;br /&gt;
*** 1) Work out what data is of our interest (confirm ACS)&lt;br /&gt;
*** 2) Determine appropriate shape file unit: &lt;br /&gt;
**** census block vs. census block group vs. census track&lt;br /&gt;
*** 3) Load into tigertest&lt;br /&gt;
&lt;br /&gt;
* Done:&lt;br /&gt;
** Downloaded data from https://www.census.gov/cgi-bin/geo/shapefiles/index.php&lt;br /&gt;
  tl_2017_us_coastline -- 4209&lt;br /&gt;
  tl_2017_us_primaryroads -- 11574 &lt;br /&gt;
  tl_2017_us_rails -- 176237&lt;br /&gt;
** Link found to potentially download ACS data: https://www.census.gov/geo/maps-data/data/tiger-data.html&lt;br /&gt;
*** But most files on it come with .gdb extension and not .shp&lt;br /&gt;
&lt;br /&gt;
2017-10-03:&lt;br /&gt;
* Installed PostGIS &amp;amp; is now visible on pgAdmin III&lt;br /&gt;
&lt;br /&gt;
* ArcGIS (connect to postgis database):&lt;br /&gt;
** 1) Open ArcMap&lt;br /&gt;
** 2) Either open blank or open existing file/project&lt;br /&gt;
** 3) Click on 'Add Data' button with a cross and a yellow diamond (under Selection toolbar)&lt;br /&gt;
** 4) Go to the top-most directory by pressing on the arrow that points left-then-up (on the left of home button)&lt;br /&gt;
** 5) Click on 'Database Connections'&lt;br /&gt;
** 6) Click on 'Add Database Connection' (if Connection to localhost.sde) does not exist already)&lt;br /&gt;
** 7) Fill in the following fields:&lt;br /&gt;
*** Database Platform: PostgreSQL&lt;br /&gt;
*** Instance: localhost&lt;br /&gt;
*** User name: postgres&lt;br /&gt;
*** Password: &lt;br /&gt;
*** Database: tigertest&lt;br /&gt;
** 8) Press 'OK'&lt;br /&gt;
** 9) Now you'll have 'Connection to localhost.sde' in your Database Connections&lt;br /&gt;
** 10) Double click on 'Connection to localhost.sde'&lt;br /&gt;
** 11) Double click on the table of interest&lt;br /&gt;
** 12) Click 'Finish'&lt;br /&gt;
** 13) You'll see information populated on map, as one of the 'Layers'&lt;br /&gt;
*** Tested with: tigertest.public.copointplacescontains&lt;br /&gt;
&lt;br /&gt;
* On running &amp;amp; altering Oliver's script: &lt;br /&gt;
** Location: E:\McNair\Projects\OliverLovesCircles\src\python\vc_circles.py&lt;br /&gt;
** Ed manipulated file names so that underscores would replace dots (St.Louis --&amp;gt; St_Louis)&lt;br /&gt;
** Takes in instances and sweep times as part of the argument, but not impactful as those variables are hardcoded in the script&lt;br /&gt;
** Ran vc_circles.py with the following variables with changed values:&lt;br /&gt;
*** SWEEP_CYCLE_SECONDS = 10 (used to be 30)&lt;br /&gt;
*** NUMBER_INSTANCES = 16 (used to be 8)&lt;br /&gt;
** New output to be found in: E:\McNair\Projects\OliverLovesCircles\out&lt;br /&gt;
&lt;br /&gt;
2017-10-02:&lt;br /&gt;
* Talked to Harrison &amp;amp; Peter regarding ArcGIS&lt;br /&gt;
** Currently have points plotted on Houston&lt;br /&gt;
** Trouble interpreting geometry type, as currently reads in from text file&lt;br /&gt;
** Documents located in : E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS&lt;br /&gt;
* Attempted to install PostGIS spatial extention from PostgreSQL but getting 'spatial database creation failed' error message.&lt;br /&gt;
** Referenced instructions: &lt;br /&gt;
*** https://www.gpsfiledepot.com/tutorials/installing-and-setting-up-postgresql-with-postgis/&lt;br /&gt;
*** http://www.bostongis.com/PrinterFriendly.aspx?content_name=postgis_tut01&lt;br /&gt;
&lt;br /&gt;
2017-09-26:&lt;br /&gt;
* Created a table that maps a state to the database name.&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Translating_Table_names_to_corresponding_States&lt;br /&gt;
* Added more GIS-information (functions, realm &amp;amp; outliers to consider)&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration#GIS_Resources&lt;br /&gt;
* Visualization in PostGIS or connecting to ArcGIS for visualization (import/export data)&lt;br /&gt;
* Spatial indexing:&lt;br /&gt;
** http://revenant.ca/www/postgis/workshop/indexing.html&lt;br /&gt;
&lt;br /&gt;
2017-09-25:&lt;br /&gt;
* Talked to Ed about GIS, Census data, and going about determining the correctness of reported 'place.' Currently script makes a cross product of each reported place and an existing place, outputting a column of boolean value to indicate whether the reported place's coordinates fell within a place's geometric boundaries. One other way of going about this which we discussed is to first check if the reported place does fall within that place's boundaries. If it isn't, we'll go about the cross product method.&lt;br /&gt;
&lt;br /&gt;
* To add documentation : &lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration&lt;br /&gt;
&lt;br /&gt;
* Discussed the need to maintain venture capital database.&lt;br /&gt;
&lt;br /&gt;
*Relevant File paths:&lt;br /&gt;
**E:\McNair\Projects\Agglomeration\TestGIS.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\ProecssingCoLevelSimple.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\CitiesWithGT10Active.txt&lt;br /&gt;
&lt;br /&gt;
2017-09-21:&lt;br /&gt;
* Functions for Linear Referencing:&lt;br /&gt;
 '''ST_LineInterpolatePoint(geometry A, double measure)''': Returns a point interpolated along a line.&lt;br /&gt;
 '''ST_LineLocatePoint(geometry A, geometry B)''': Returns a float between 0 and 1 representing the location of the closest point on LineString to the given Point.&lt;br /&gt;
 '''ST_Line_Substring(geometry A, double from, double to)''': Return a linestring being a substring of the input one starting and ending at the given fractions of total 2d length.&lt;br /&gt;
 '''ST_Locate_Along_Measure(geometry A, double measure)''': Return a derived geometry collection value with elements that match the specified measure.&lt;br /&gt;
 '''ST_Locate_Between_Measures(geometry A, double from, double to)''': Return a derived geometry collection value with elements that match the specified range of measures inclusively.&lt;br /&gt;
 '''ST_AddMeasure(geometry A, double from, double to)''': Return a derived geometry with measure elements linearly interpolated between the start and end points. If the geometry has no measure dimension, one is added.&lt;br /&gt;
&lt;br /&gt;
*3-D Functions:&lt;br /&gt;
 '''ST_3DClosestPoint''' — Returns the 3-dimensional point on g1 that is closest to g2. This is the first point of the 3D shortest line.&lt;br /&gt;
 '''ST_3DDistance''' — For geometry type Returns the 3-dimensional cartesian minimum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DDWithin''' — For 3d (z) geometry type Returns true if two geometries 3d distance is within number of units.&lt;br /&gt;
 '''ST_3DDFullyWithin''' — Returns true if all of the 3D geometries are within the specified distance of one another.&lt;br /&gt;
 '''ST_3DIntersects''' — Returns TRUE if the Geometries “spatially intersect” in 3d - only for points and linestrings&lt;br /&gt;
 '''ST_3DLongestLine''' — Returns the 3-dimensional longest line between two geometries&lt;br /&gt;
 '''ST_3DMaxDistance''' — For geometry type Returns the 3-dimensional cartesian maximum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DShortestLine''' — Returns the 3-dimensional shortest line between two geometries&lt;br /&gt;
&lt;br /&gt;
*Relevant PostgreSQL Commands:&lt;br /&gt;
 '''\dt *.*''' Show all tables&lt;br /&gt;
 '''\q''' Exit table&lt;br /&gt;
&lt;br /&gt;
*Specifities/ Outliers to consider:&lt;br /&gt;
 New York (decompose)&lt;br /&gt;
 Princeton area (keep Princeton  unique)&lt;br /&gt;
 Reston, Virginia (keep)&lt;br /&gt;
 San Diego (include La Jolla)&lt;br /&gt;
 Silicon Valley (all distinct)&lt;br /&gt;
&lt;br /&gt;
* Continue reading from: https://postgis.net/docs/postgis_installation.html&lt;br /&gt;
&lt;br /&gt;
2017-09-20:&lt;br /&gt;
* Attended first intro to GIS course yesterday&lt;br /&gt;
* Updated above notes on GIS&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-19:&lt;br /&gt;
* Useful functions for spatial joins:&lt;br /&gt;
&lt;br /&gt;
 '''sum(expression)''': aggregate to return a sum for a set of records&lt;br /&gt;
 '''count(expression)''': aggregate to return the size of a set of records&lt;br /&gt;
 '''ST_Area(geometry)''' returns the area of the polygons&lt;br /&gt;
 '''ST_AsText(geometry)''' returns WKT text&lt;br /&gt;
 '''ST_Buffer(geometry, distance)''': For geometry: Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry. For geography: Uses a planar transform wrapper.&lt;br /&gt;
 '''ST_Contains(geometry A, geometry B)''' returns the true if geometry A contains geometry B&lt;br /&gt;
 '''ST_Distance(geometry A, geometry B)''' returns the minimum distance between geometry A and geometry B&lt;br /&gt;
 '''ST_DWithin(geometry A, geometry B, radius)''' returns the true if geometry A is radius distance or less from geometry B&lt;br /&gt;
 '''ST_GeomFromText(text)''' returns geometry&lt;br /&gt;
 '''ST_Intersection(geometry A, geometry B)''': Returns a geometry that represents the shared portion of geomA and geomB. The geography implementation does a transform to geometry to do the intersection and then transform back to WGS84&lt;br /&gt;
 '''ST_Intersects(geometry A, geometry B)''' returns the true if geometry A intersects geometry B&lt;br /&gt;
 '''ST_Length(linestring)''' returns the length of the linestring&lt;br /&gt;
 '''ST_Touches(geometry A, geometry B)''' returns the true if the boundary of geometry A touches geometry B&lt;br /&gt;
 '''ST_Within(geometry A, geometry B)''' returns the true if geometry A is within geometry B&lt;br /&gt;
 geometry_a '''&amp;amp;&amp;amp;''' geometry_b: Returns TRUE if A’s bounding box overlaps B’s.&lt;br /&gt;
 geometry_a '''=''' geometry_b: Returns TRUE if A’s bounding box is the same as B’s.&lt;br /&gt;
 '''ST_SetSRID(geometry, srid)''': Sets the SRID on a geometry to a particular integer value.&lt;br /&gt;
 '''ST_SRID(geometry)''': Returns the spatial reference identifier for the ST_Geometry as defined in spatial_ref_sys table.&lt;br /&gt;
 '''ST_Transform(geometry, srid)''': Returns a new geometry with its coordinates transformed to the SRID referenced by the integer parameter.&lt;br /&gt;
 '''ST_Union()''': Returns a geometry that represents the point set union of the Geometries.&lt;br /&gt;
 '''substring(string [from int] [for int])''': PostgreSQL string function to extract substring matching SQL regular expression.&lt;br /&gt;
 '''ST_Relate(geometry A, geometry B)''': Returns a text string representing the DE9IM relationship between the geometries.&lt;br /&gt;
 '''ST_GeoHash(geometry A)''': Returns a text string representing the GeoHash of the bounds of the object.&lt;br /&gt;
&lt;br /&gt;
*Native functions for geogrphy:&lt;br /&gt;
 '''ST_AsText(geography)''' returns text&lt;br /&gt;
 '''ST_GeographyFromText(text)''' returns geography&lt;br /&gt;
 '''ST_AsBinary(geography)''' returns bytea&lt;br /&gt;
 '''ST_GeogFromWKB(bytea)''' returns geography&lt;br /&gt;
 '''ST_AsSVG(geography)''' returns text&lt;br /&gt;
 '''ST_AsGML(geography)''' returns text&lt;br /&gt;
 '''ST_AsKML(geography)''' returns text&lt;br /&gt;
 '''ST_AsGeoJson(geography)''' returns text&lt;br /&gt;
 '''ST_Distance(geography, geography)''' returns double&lt;br /&gt;
 '''ST_DWithin(geography, geography, float8)''' returns boolean&lt;br /&gt;
 '''ST_Area(geography)''' returns double&lt;br /&gt;
 '''ST_Length(geography)''' returns double&lt;br /&gt;
 '''ST_Covers(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_CoveredBy(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Intersects(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Buffer(geography, float8)''' returns geography [1]&lt;br /&gt;
 '''ST_Intersection(geography, geography)''' returns geography [1]&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/geography.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-18:&lt;br /&gt;
* Read documentation on PostGIS and tiger geocoder&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/joins.html&lt;br /&gt;
&lt;br /&gt;
2017-09-12:&lt;br /&gt;
* Clarified University Matching output file.&lt;br /&gt;
* Helped Christy with pdf-reader, capturing keywords in readable format.&lt;br /&gt;
&lt;br /&gt;
2017-09-11:&lt;br /&gt;
* Ensured that documentation exists for the projects worked on last semester.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
&lt;br /&gt;
2017-04-17:&lt;br /&gt;
* To pull accelerators: Wrote simple python regex-based script that ran on organizations data.&lt;br /&gt;
 Code: E:\McNair\Projects\Accelerators\Crunchbase Snapshot\accelerator keywords.py&lt;br /&gt;
 Matched output (885 mathces) : E:\McNair\Projects\Accelerators\Crunchbase Snapshot\Jeemin_885_accel_matches&lt;br /&gt;
&lt;br /&gt;
2017-04-14:&lt;br /&gt;
* Loaded Federal Grants Data into database&lt;br /&gt;
&lt;br /&gt;
2017-04-12:&lt;br /&gt;
* Finishing up cleaning the columns for Federal Grant Data - NIH. The output excel files can be accessed at:&lt;br /&gt;
 E:\McNair\Projects\Federal Grant Data\NIH\Grants &lt;br /&gt;
 Titled:&lt;br /&gt;
     Jeemin_combined_files 1986-2001.csv&lt;br /&gt;
     Jeemin_combined_files 2002-2012.csv&lt;br /&gt;
     Jeemin_combined_files 2013-2015.csv&lt;br /&gt;
&lt;br /&gt;
* psql table formula:&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE all_grants (&lt;br /&gt;
  APPLICATION_ID integer,&lt;br /&gt;
  ACTIVITY varchar(3),&lt;br /&gt;
  ADMINISTERING_IC varchar(2),&lt;br /&gt;
  APPLICATION_TYPE varchar(1),&lt;br /&gt;
  ARRA_FUNDED varchar(1),&lt;br /&gt;
  AWARD_NOTICE_DATE date, &lt;br /&gt;
  BUDGET_START date,&lt;br /&gt;
  BUDGET_END date, &lt;br /&gt;
  CFDA_CODE varchar(3), &lt;br /&gt;
  CORE_PROJECT_NUM varchar(11),&lt;br /&gt;
  ED_INST_TYPE varchar(30), &lt;br /&gt;
  FOA_NUMBER varchar(13),&lt;br /&gt;
  FULL_PROJECT_NUM varchar(35),&lt;br /&gt;
  FUNDING_ICs varchar(40),&lt;br /&gt;
  FUNDING_MECHANISM varchar(23),&lt;br /&gt;
  FY smallint, &lt;br /&gt;
  IC_NAME varchar(77), &lt;br /&gt;
  NIH_SPENDING_CATS varchar(295), &lt;br /&gt;
  ORG_CITY varchar(20),&lt;br /&gt;
  ORG_COUNTRY varchar(16),&lt;br /&gt;
  ORG_DEPT varchar(30),&lt;br /&gt;
  ORG_DISTRICT smallint, &lt;br /&gt;
  ORG_DUNS integer,&lt;br /&gt;
  ORG_FIPS varchar(2), &lt;br /&gt;
  ORG_NAME varchar(60), &lt;br /&gt;
  ORG_STATE varchar(2), &lt;br /&gt;
  ORG_ZIPCODE integer, &lt;br /&gt;
  PHR varchar(200), &lt;br /&gt;
  PI_IDS varchar(30), &lt;br /&gt;
  PI_NAMEs varchar(200), &lt;br /&gt;
  PROGRAM_OFFICER_NAME varchar(36), &lt;br /&gt;
  PROJECT_START date, &lt;br /&gt;
  PROJECT_END date, &lt;br /&gt;
  PROJECT_TERMS varchar(200), &lt;br /&gt;
  PROJECT_TITLE varchar(244), &lt;br /&gt;
  SERIAL_NUMBER smallint,&lt;br /&gt;
  STUDY_SECTION varchar(4), &lt;br /&gt;
  STUDY_SECTION_NAME varchar(100), &lt;br /&gt;
  SUBPROJECT_ID smallint, &lt;br /&gt;
  SUFFIX varchar(2),&lt;br /&gt;
  SUPPORT_YEAR smallint, &lt;br /&gt;
  DIRECT_COST_AMT integer, &lt;br /&gt;
  INDIRECT_COST_AMT integer, &lt;br /&gt;
  TOTAL_COST integer, &lt;br /&gt;
  TOTAL_COST_SUB_PROJECT integer&lt;br /&gt;
 );&lt;br /&gt;
 \COPY all_grants FROM 'Jeemin_combined_files 1986-2001.csv' WITH DELIMITER AS E'\t' HEADER NULL AS ''CSV&lt;br /&gt;
&lt;br /&gt;
2017-03-29:&lt;br /&gt;
* Troubled by the variety of cases - separating keys by keywords will not work favorably when it hits University of California vs. University of Southern California case - find a way to match University of Southern California first (more specific ones first) - but how to generalize&lt;br /&gt;
&lt;br /&gt;
2017-03-27:&lt;br /&gt;
* Writing code for university matches - decided to go through keys instead of each dataitem. Use keywords in each key to go through the dataitem - misspellings are currently unaccounted for.&lt;br /&gt;
&lt;br /&gt;
2017-03-24:&lt;br /&gt;
* Discussed with Julia &amp;amp; Meghana about university keys to use to count # of occurrences, including aliases and misspellings&lt;br /&gt;
* Thoughts: to use a scoring metric with a key of UNIVERSITY OF CALIFORNIA SYSTEM, it should have a 'better' score when compared to MATHEMATICAL SCIENCES PUBLISHERS C/O UNIVERSITY OF CALIFORNIA BERKELEY or CALIFORNIA AT LOS ANGELES, UNVIERSITY OF than when compared to UNIVERSITY OF SOUTHERN CALIFORNIA, which may pose a challenge when attempting to implement this in a more general sense. In normalizing a string, strip &amp;quot;THE&amp;quot;, &amp;quot;,&amp;quot; and split words by spaces and compare each keyword from the two strings. Deciding on which strings to compare will be another issue - length (within some range maybe) could be an option. &lt;br /&gt;
* Federal Grant Data XML Parser was rerun - same output textfiles&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Read string matching &amp;amp; calculating distance, below are relevant links&lt;br /&gt;
* [http://www.cs.cmu.edu/~wcohen/postscript/ijcai-ws-2003.pdf]&lt;br /&gt;
* [http://web.archive.org/web/20081224234350/http://www.dcs.shef.ac.uk/~sam/stringmetrics.html]&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Talked to Julia about universal matcher, want to combine all University of California's to University of California, The Regents of&lt;br /&gt;
* Converted crunchbase2013 data from mySQL to PostgreSQL, but having trouble with the last table - cb_relationships, complains about syntax error at or near some places - but generally all tables exist in database called crunchbase&lt;br /&gt;
* Federal Grant Data XML Parser was run - the three output textfiles can be found in E:\McNair\Projects\Federal Grant Data\NSF&lt;br /&gt;
&lt;br /&gt;
2017-03-16:&lt;br /&gt;
* Further documented [[University Patent Matching]]&lt;br /&gt;
* Finished writing XML Parser&lt;br /&gt;
&lt;br /&gt;
2017-03-15:&lt;br /&gt;
* Todo: write a wikipage on possible input/output info on string matcher&lt;br /&gt;
* Wrote part of XML parser, extracted yearly data into E:\McNair\Projects\Federal Grant Data\NSF\NSF Extracted Data (up to year 2010)&lt;br /&gt;
&lt;br /&gt;
2017-03-14:&lt;br /&gt;
* Started pulling academy cases but there are too many cases to worry about, in terms of institution of interest. A document is located in E:\McNair\Projects\University Patents\academies_verify_cases.txt&lt;br /&gt;
* Need Julia/Meghana to look through the hits and see which are relevant &amp;amp; extract pattern from there. &lt;br /&gt;
* Having trouble outputting txt file without double quotes around every line. &lt;br /&gt;
* Thinking that one text file should be output for all keywords instead of having one each, to avoid overlap (ex) COLLEGE and UNIVERSITY are both keywords; ALBERT EINSTEIN COLLEGE OF YESHIVA UNIVERSITY will be hit twice if it were counted as two separate instances, one accounting for COLLEGE and the other for UNIVERSITY) - either in the form of if-elseif statements or one big regex check.&lt;br /&gt;
&lt;br /&gt;
2017-03-13:&lt;br /&gt;
* For University Patent Data Matching - matched SCHOOL (output: E:\McNair\Projects\University Patents\school_pulled_from_assignee_list_USA) and matched INSTITUTE(output: E:\McNair\Projects\University Patents\institute_pulled_from_assignee_list_USA). &lt;br /&gt;
* [[University Patent Matching]] &lt;br /&gt;
* To be worked on later: Grant XML parsing &amp;amp; general name matcher&lt;br /&gt;
&lt;br /&gt;
2017-03-08:&lt;br /&gt;
* Wrote regex pattern that identifies all &amp;quot;university&amp;quot; matchings - can be found in E:\McNair\Projects\University Patents\university_pulled_from_assignee_list_USA -- is an output file&lt;br /&gt;
* Talked to Sonia, but didn't come to solid conclusion on identifying whether key words associate with city or country by running a python function&lt;br /&gt;
* Output sql tables from finished run of Jeemin_FDATrial_as_key_data_ripping.py &lt;br /&gt;
* Ran through assigneelist_USA.txt to see how many different ways UNIVERSITY could be spelled wrong. There were many.&lt;br /&gt;
* Tried to logic through creating a pattern that could catch all different versions of UNIVERSITY. Discuss further on whether UNIVERSITIES and those that include UNIVERSITIES but include  INC in the end should be pulled as relevant information&lt;br /&gt;
&lt;br /&gt;
2017-03-06:&lt;br /&gt;
* [[Installing python in a database]]&lt;br /&gt;
* Added building Python function section to [[Working with PostgreSQL]] at the bottom of the page.&lt;br /&gt;
* Ran FDA Trial data ripping again, as the text output files were wiped. &lt;br /&gt;
* Plan on discussing with Julia and Meghana again about pulling universities and other relevant institutions from the Assignee List USA. &lt;br /&gt;
* Talked to Sonia about pulling city, state, zipcode information, hence python was installed in a database. Will work with Sonia on Wednesday afternoon and see how best a regex function could be implemented&lt;br /&gt;
&lt;br /&gt;
2017-03-03:&lt;br /&gt;
* Attempted to output sql tables&lt;br /&gt;
&lt;br /&gt;
2017-03-01:&lt;br /&gt;
* Started re-running Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
&lt;br /&gt;
2017-02-27:&lt;br /&gt;
* Finished producing tables from Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
* Talked to Julia about LinkedIn data extracting - to be discussed further with Julia &amp;amp; Peter.&lt;br /&gt;
* Started web crawler for Wikipedia - currently pulls Endowment, Academic staff, students, undergraduates, and postgraduates info found on Rice Wikipedia page. Can be found in : E:\McNair\Projects\University Patents\Jeemin_University_wikipedia_crawler.py&lt;br /&gt;
&lt;br /&gt;
2017-02-24:&lt;br /&gt;
* Continued working on producing multiple tables - first two are done. Was working on location, as there are multiple location tags per location.&lt;br /&gt;
&lt;br /&gt;
2017-02-22:&lt;br /&gt;
* Finished Jeemin_FDATrial_as_key_data_ripping.py (E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py), which outputs to E:\McNair\Projects\FDA Trials\Jeemin_Project\general_data_ripping_output.txt; TODO: output four different tables &amp;amp; replace the write in the same for-loop as going through each file&lt;br /&gt;
&lt;br /&gt;
2017-02-20:&lt;br /&gt;
* Continued working on Jeemin_FDATrial_as_key_data_ripping.py to find tags and place all of those information in a list. The other zipcode file did not finish executing after 2+ hours of running it - considering the possibility of splitting the record file into smaller bits, or running the processing on a faster machine.&lt;br /&gt;
&lt;br /&gt;
2017-02-17:&lt;br /&gt;
* Completed code for counting the number of occurrences for each unique zipcode. (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_Running_File.py). It has been running for 20+min because of the comprehensive XML data files. Meanwhile started coding to create a dictionary with the keys corresponding to each unique trial ID, mapped to every other information (location, sponsors, phase, drugs ...etc.) (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py).&lt;br /&gt;
&lt;br /&gt;
2017-02-15:&lt;br /&gt;
* Discussed with Catherine what to do with FDA Trial data and decided to have a dictionary with zip-codes as keys and number of trials occurred in that zipcode as values. Was still attempting to loop through the files without the code having to exist in the same directory as the XML files. Plan to write to excel via tsv, with zip-code as one column and # of occurrence as the other.&lt;br /&gt;
&lt;br /&gt;
2017-02-13:&lt;br /&gt;
* Goals (for trials): 1) Build ER Diagram 2) For each entity, get XML snippet 3) Build a parser/ripper for single file; the python parser can be found at: E:\McNair\Projects\FDA Trials\Jeemin_Project&lt;br /&gt;
&lt;br /&gt;
2017-02-08:&lt;br /&gt;
* Attempted to come up with possible cases for locating the description of accelerators - pick up from extracting bodies of text from the about page (given that it exists)&lt;br /&gt;
* [[Trial Data Project]]&lt;br /&gt;
&lt;br /&gt;
2017-02-06:&lt;br /&gt;
* Set up wikiPage &amp;amp; remote desktop. &lt;br /&gt;
* Started working on python version of web crawler. So far it successfully prints out a catchphrase/ description for one website. To be worked on. The python file can be found in: E:\McNair\Projects\Accelerators\Python WebCrawler\webcrawlerpython.py&lt;br /&gt;
&lt;br /&gt;
[[Category:Work Log]]&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22302</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22302"/>
		<updated>2017-12-05T18:21:37Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Cities &amp;amp; Tables */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a tale ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;br /&gt;
&lt;br /&gt;
=== Houston, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: houstontif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                 Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+-----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('houstontif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 perimeter  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 name       | character varying(25)  |           |          |                                         | extended |              | &lt;br /&gt;
 siteno     | integer                |           |          |                                         | plain    |              | &lt;br /&gt;
 cohgis_coh | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 cohgis_c_1 | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                         | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                         | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22301</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22301"/>
		<updated>2017-12-05T18:19:46Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Dallas, TX */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a tale ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -----------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22300</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22300"/>
		<updated>2017-12-05T18:19:34Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Cities &amp;amp; Tables */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a tale ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dallas, TX ===&lt;br /&gt;
&lt;br /&gt;
Table name: dallastif&lt;br /&gt;
&lt;br /&gt;
   Column   |          Type          | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
------------+------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 gid        | integer                |           | not null | nextval('dallastif_gid_seq'::regclass) | plain    |              | &lt;br /&gt;
 cvttxdscrp | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 nofore     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 noappl     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 nosale     | bigint                 |           |          |                                        | plain    |              | &lt;br /&gt;
 sumasvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxvlchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 sumtxodchg | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 lastupdate | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 cvttxcd    | integer                |           |          |                                        | plain    |              | &lt;br /&gt;
 name       | character varying(150) |           |          |                                        | extended |              | &lt;br /&gt;
 created_us | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 created_da | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 last_edite | character varying(254) |           |          |                                        | extended |              | &lt;br /&gt;
 last_edi_1 | date                   |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_star | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_stle | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_area | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 shape_len  | numeric                |           |          |                                        | main     |              | &lt;br /&gt;
 geom       | geometry(MultiPolygon) |           |          |                                        | main     |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22299</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22299"/>
		<updated>2017-12-05T18:18:37Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Command to upload SHP file into a table in database (tigertest) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
* Run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, and .prj&lt;br /&gt;
* &amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name&lt;br /&gt;
* Will be prompted for a password after running inputting this command&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a tale ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22298</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22298"/>
		<updated>2017-12-05T18:18:02Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Command to upload KML file into a table in database (tigertest) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest) ==&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
(run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, &lt;br /&gt;
 and .prj)&lt;br /&gt;
(&amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name)&lt;br /&gt;
(Will be prompted for a password after running inputting this command)&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a tale ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22297</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22297"/>
		<updated>2017-12-05T18:17:49Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Uploading TIF Data onto database (tigertest) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Command to upload SHP file into a table in database (tigertest)&lt;br /&gt;
 researcher@McNairDBServ:/bulk/Jeemin/Dallas$ shp2pgsql -I &amp;quot;TIFDistrict.shp&amp;quot; dallastif | psql -U postgres -W -d tigertest&lt;br /&gt;
(run this command in a folder with all files for the table, such as files of type .shp, .dbf, .shx, .cpg, &lt;br /&gt;
 and .prj)&lt;br /&gt;
(&amp;quot;TIFDistrict.shp&amp;quot; is the name of the shapefile and dallstif is the name of the table I wish to name)&lt;br /&gt;
(Will be prompted for a password after running inputting this command)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a tale ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22296</id>
		<title>Jeemin Sim (Work Log)</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22296"/>
		<updated>2017-12-05T16:48:34Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Fall 2017 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Jeemin Sim]] [[Work Logs]] [[Jeemin Sim (WorkLog)|(log page)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2017-12-05:&lt;br /&gt;
* Uploaded tables with KML files in TIF folder in bulk(E:) drive&lt;br /&gt;
** Allegheny County&lt;br /&gt;
** Atlanta&lt;br /&gt;
** Chicago&lt;br /&gt;
** Columbus, OH&lt;br /&gt;
** Dublin, OH&lt;br /&gt;
** Vermont&lt;br /&gt;
** Washington, D.C.&lt;br /&gt;
&lt;br /&gt;
*Updated documentation for: &lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/TIF_Project#Uploading_TIF_Data_onto_database_.28tigertest.29&lt;br /&gt;
&lt;br /&gt;
* shp2pgsql needs to be installed to upload Shapefiles to PostgreSQL database&lt;br /&gt;
** applies for Houston, TX and Dallas, TX&lt;br /&gt;
&lt;br /&gt;
2017-12-04:&lt;br /&gt;
* To upload KML file into database with specified table name: &lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
* chicagotif table now resides in tigertest database&lt;br /&gt;
&lt;br /&gt;
2017-11-30:&lt;br /&gt;
* Displayed map with TIF districts and startups&lt;br /&gt;
* Location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\McNair_Color_Chicago_TIF_and_startups.png&lt;br /&gt;
* Added information and steps to ArcMap/ArcGIS documentation page&lt;br /&gt;
* Create a project page for 'Working with POSTGIS' and add instructions for uploading KML file onto POSTGIS&lt;br /&gt;
** Command used : &lt;br /&gt;
*** Logged in as : researcher@McNairDBServ&lt;br /&gt;
 /bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml &lt;br /&gt;
* chicago TIF kml file currently downloaded in tigertest with a table name of Layer0&lt;br /&gt;
** Figure out how to change layer name while loading kml file&lt;br /&gt;
** Instructions pulled from : http://wiki.wildsong.biz/index.php/Loading_data_into_PostGIS#Loading_data_from_KMZ_files&lt;br /&gt;
&lt;br /&gt;
2017-11-28:&lt;br /&gt;
* Created and edited [[ArcMap / ArcGIS Documentation]]&lt;br /&gt;
* Plotted points for TIFS and Startups in Chicago in one map.&lt;br /&gt;
** Location: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\Jeemin_Chicago_TIF_and_Startups_Attempt1&lt;br /&gt;
* Used https://mygeodata.cloud/result to convert from KML file to CSV (which was then saved as txt file to be uploaded onto ArcMap)&lt;br /&gt;
* Text files located in Local Disk (C:) Drive&lt;br /&gt;
&lt;br /&gt;
2017-11-27:&lt;br /&gt;
*Download Chicago TIF data&lt;br /&gt;
&lt;br /&gt;
2017-11-13:&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
2017-11-09: &lt;br /&gt;
* Notes on data downloaded:&lt;br /&gt;
** Year 2010-2012 data are based on total population, not 25 yrs or over (case for all other tables)&lt;br /&gt;
*** Record appears five times total, with same exact column name&lt;br /&gt;
***For exmaple: 'Total; Estimate; High school graduate (includes equivalency)' appears five times, with different values.&lt;br /&gt;
* TODO:&lt;br /&gt;
** Make Projects page for ACS Data&lt;br /&gt;
***[[American Community Survey (ACS) Data]]&lt;br /&gt;
&lt;br /&gt;
2017-11-07:&lt;br /&gt;
*Yesterday, narrowed down columns of interest from ACS_S1501_educationattain_2016 table.&lt;br /&gt;
&lt;br /&gt;
 Id&lt;br /&gt;
 Id2&lt;br /&gt;
 Geography&lt;br /&gt;
 Total; Estimate; Population 25 years and over&lt;br /&gt;
 Total; Estimate; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Associate's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Bachelor's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Percent high school graduate or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent high school graduate or higher&lt;br /&gt;
 Percent; Estimate; Percent bachelor's degree or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent bachelor's degree or higher&lt;br /&gt;
&lt;br /&gt;
*Complications:&lt;br /&gt;
**For csv files corresponding to years 2015 &amp;amp; 2016, all of the above columns exist.&lt;br /&gt;
**For csv files corresponding to years 2005 - 2014, no 'Percent' columns exist&lt;br /&gt;
*** Instead their 'Total' columns are percentage values&lt;br /&gt;
**For csv file corresponding to year 2005, columns regarding Graduate or professional degree are labeled differently.&lt;br /&gt;
**2012 data doesn't correspond to Population 25 years and over.&lt;br /&gt;
&lt;br /&gt;
*Temporary Solution:&lt;br /&gt;
**Since the above problems may be specific to this set of tables, will go through csv files and adjust columns.&lt;br /&gt;
&lt;br /&gt;
*Python script location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\pullCertainColumns.py&lt;br /&gt;
&lt;br /&gt;
2017-10-31:&lt;br /&gt;
* Finished doanloading files from ACS.&lt;br /&gt;
* Started loading tables into tigertest.&lt;br /&gt;
* Commands run could be found in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\DataLoading_SQL_Commands.txt&lt;br /&gt;
&lt;br /&gt;
2017-10-30:&lt;br /&gt;
* Downloaded data from ACS, to be continued&lt;br /&gt;
* File path: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data&lt;br /&gt;
* Fields of interest: &lt;br /&gt;
 S1401 SCHOOL ENROLLMENT&lt;br /&gt;
 S1501 EDUCATIONAL ATTAINMENT&lt;br /&gt;
 S2301 EMPLOYMENT STATUS&lt;br /&gt;
 B01003 TOTAL POPULATION&lt;br /&gt;
 B02001 RACE&lt;br /&gt;
 B07201 GEOGRAPHICAL MOBILITY&lt;br /&gt;
 B08303 TRAVEL TIME TO WORK&lt;br /&gt;
 B19013 MEDIAN HOUSEHOLD INCOME&lt;br /&gt;
 B19053 SELF-EMPLOYMENT INCOME IN THE PAST 12 MONTHS FOR HOUSEHOLDS&lt;br /&gt;
 B19083 GINI INDEX OF INCOME INEQUALITY&lt;br /&gt;
 B25003 TENURE&lt;br /&gt;
 B25105 MEDIAN MONTHLY HOUSING COSTS&lt;br /&gt;
 B28011 INTERNET SUBSCRIPTIONS IN HOUSEHOLD&lt;br /&gt;
 G001 GEOGRAPHIC IDENTIFIERS&lt;br /&gt;
&lt;br /&gt;
2017-10-23:&lt;br /&gt;
* Talked to Ed with Peter &amp;amp; Oliver about upcoming tasks &amp;amp; projects.&lt;br /&gt;
* Loaded acs_place table 2017 (does not contain population) on tigertest.&lt;br /&gt;
** SQL commands used:&lt;br /&gt;
&lt;br /&gt;
 DROP TABLE acs_place;&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE acs_place (&lt;br /&gt;
        USPS varchar(5),&lt;br /&gt;
        GEOID  varchar(30),&lt;br /&gt;
        ANSICODE varchar(30),&lt;br /&gt;
        NAME varchar(100),&lt;br /&gt;
        LSAD varchar(30),&lt;br /&gt;
        FUNCSTAT varchar(10),&lt;br /&gt;
        ALAND varchar(30),&lt;br /&gt;
        AWATER varchar(30),&lt;br /&gt;
        ALAND_SQMI varchar(30),&lt;br /&gt;
        AWATER_SQMI varchar(30),&lt;br /&gt;
        INTPTLAT varchar(30),&lt;br /&gt;
        INTPTLONG varchar(30)&lt;br /&gt;
 );&lt;br /&gt;
&lt;br /&gt;
 \COPY acs_place FROM '/bulk/2017_Gaz_place_national.txt';&lt;br /&gt;
 --COPY 29578&lt;br /&gt;
&lt;br /&gt;
* TODO:&lt;br /&gt;
** Find acs place 2016 data for population&lt;br /&gt;
** Find larger acs files, ideally at the place level&lt;br /&gt;
** Provide more documentation on POSTGIS &amp;amp; geocoding&lt;br /&gt;
&lt;br /&gt;
2017-10-16:&lt;br /&gt;
* Exported maps of points from the Bay Area each year. &lt;br /&gt;
** Map used location: E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year\BayAreaEveryYearMap&lt;br /&gt;
** Zoom scale: 1:650.000&lt;br /&gt;
* Location of Bay Area Points png files: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year&lt;br /&gt;
&lt;br /&gt;
2017-10-10:&lt;br /&gt;
*Discoveries/ Struggles regarding.gdb to .shp file conversion:&lt;br /&gt;
** Esri Production Mapping (costly)&lt;br /&gt;
*** License needs to be purchasesd: http://www.esri.com/software/arcgis/extensions/production-mapping/pricing&lt;br /&gt;
** Use ogr2ogr from gdal package&lt;br /&gt;
*** https://gis.stackexchange.com/questions/14432/migrating-geodatabase-data-into-postgis-without-esri-apps&lt;br /&gt;
*** Command: ogr2ogr -f &amp;quot;ESRI Shapefile&amp;quot; [Destination of shapefile] [path to gdb file]&lt;br /&gt;
*** Problem installing gdal&lt;br /&gt;
&lt;br /&gt;
2017-10-09:&lt;br /&gt;
* TODO'S:&lt;br /&gt;
** Downloading data onto tigertest&lt;br /&gt;
*** Road&lt;br /&gt;
*** Railway&lt;br /&gt;
*** Coastline&lt;br /&gt;
*** Instructions: http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Bulk_Download_TIGER_Shapefiles&lt;br /&gt;
** Configure census data from American Community Survey (ACS)&lt;br /&gt;
*** 1) Work out what data is of our interest (confirm ACS)&lt;br /&gt;
*** 2) Determine appropriate shape file unit: &lt;br /&gt;
**** census block vs. census block group vs. census track&lt;br /&gt;
*** 3) Load into tigertest&lt;br /&gt;
&lt;br /&gt;
* Done:&lt;br /&gt;
** Downloaded data from https://www.census.gov/cgi-bin/geo/shapefiles/index.php&lt;br /&gt;
  tl_2017_us_coastline -- 4209&lt;br /&gt;
  tl_2017_us_primaryroads -- 11574 &lt;br /&gt;
  tl_2017_us_rails -- 176237&lt;br /&gt;
** Link found to potentially download ACS data: https://www.census.gov/geo/maps-data/data/tiger-data.html&lt;br /&gt;
*** But most files on it come with .gdb extension and not .shp&lt;br /&gt;
&lt;br /&gt;
2017-10-03:&lt;br /&gt;
* Installed PostGIS &amp;amp; is now visible on pgAdmin III&lt;br /&gt;
&lt;br /&gt;
* ArcGIS (connect to postgis database):&lt;br /&gt;
** 1) Open ArcMap&lt;br /&gt;
** 2) Either open blank or open existing file/project&lt;br /&gt;
** 3) Click on 'Add Data' button with a cross and a yellow diamond (under Selection toolbar)&lt;br /&gt;
** 4) Go to the top-most directory by pressing on the arrow that points left-then-up (on the left of home button)&lt;br /&gt;
** 5) Click on 'Database Connections'&lt;br /&gt;
** 6) Click on 'Add Database Connection' (if Connection to localhost.sde) does not exist already)&lt;br /&gt;
** 7) Fill in the following fields:&lt;br /&gt;
*** Database Platform: PostgreSQL&lt;br /&gt;
*** Instance: localhost&lt;br /&gt;
*** User name: postgres&lt;br /&gt;
*** Password: &lt;br /&gt;
*** Database: tigertest&lt;br /&gt;
** 8) Press 'OK'&lt;br /&gt;
** 9) Now you'll have 'Connection to localhost.sde' in your Database Connections&lt;br /&gt;
** 10) Double click on 'Connection to localhost.sde'&lt;br /&gt;
** 11) Double click on the table of interest&lt;br /&gt;
** 12) Click 'Finish'&lt;br /&gt;
** 13) You'll see information populated on map, as one of the 'Layers'&lt;br /&gt;
*** Tested with: tigertest.public.copointplacescontains&lt;br /&gt;
&lt;br /&gt;
* On running &amp;amp; altering Oliver's script: &lt;br /&gt;
** Location: E:\McNair\Projects\OliverLovesCircles\src\python\vc_circles.py&lt;br /&gt;
** Ed manipulated file names so that underscores would replace dots (St.Louis --&amp;gt; St_Louis)&lt;br /&gt;
** Takes in instances and sweep times as part of the argument, but not impactful as those variables are hardcoded in the script&lt;br /&gt;
** Ran vc_circles.py with the following variables with changed values:&lt;br /&gt;
*** SWEEP_CYCLE_SECONDS = 10 (used to be 30)&lt;br /&gt;
*** NUMBER_INSTANCES = 16 (used to be 8)&lt;br /&gt;
** New output to be found in: E:\McNair\Projects\OliverLovesCircles\out&lt;br /&gt;
&lt;br /&gt;
2017-10-02:&lt;br /&gt;
* Talked to Harrison &amp;amp; Peter regarding ArcGIS&lt;br /&gt;
** Currently have points plotted on Houston&lt;br /&gt;
** Trouble interpreting geometry type, as currently reads in from text file&lt;br /&gt;
** Documents located in : E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS&lt;br /&gt;
* Attempted to install PostGIS spatial extention from PostgreSQL but getting 'spatial database creation failed' error message.&lt;br /&gt;
** Referenced instructions: &lt;br /&gt;
*** https://www.gpsfiledepot.com/tutorials/installing-and-setting-up-postgresql-with-postgis/&lt;br /&gt;
*** http://www.bostongis.com/PrinterFriendly.aspx?content_name=postgis_tut01&lt;br /&gt;
&lt;br /&gt;
2017-09-26:&lt;br /&gt;
* Created a table that maps a state to the database name.&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Translating_Table_names_to_corresponding_States&lt;br /&gt;
* Added more GIS-information (functions, realm &amp;amp; outliers to consider)&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration#GIS_Resources&lt;br /&gt;
* Visualization in PostGIS or connecting to ArcGIS for visualization (import/export data)&lt;br /&gt;
* Spatial indexing:&lt;br /&gt;
** http://revenant.ca/www/postgis/workshop/indexing.html&lt;br /&gt;
&lt;br /&gt;
2017-09-25:&lt;br /&gt;
* Talked to Ed about GIS, Census data, and going about determining the correctness of reported 'place.' Currently script makes a cross product of each reported place and an existing place, outputting a column of boolean value to indicate whether the reported place's coordinates fell within a place's geometric boundaries. One other way of going about this which we discussed is to first check if the reported place does fall within that place's boundaries. If it isn't, we'll go about the cross product method.&lt;br /&gt;
&lt;br /&gt;
* To add documentation : &lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration&lt;br /&gt;
&lt;br /&gt;
* Discussed the need to maintain venture capital database.&lt;br /&gt;
&lt;br /&gt;
*Relevant File paths:&lt;br /&gt;
**E:\McNair\Projects\Agglomeration\TestGIS.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\ProecssingCoLevelSimple.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\CitiesWithGT10Active.txt&lt;br /&gt;
&lt;br /&gt;
2017-09-21:&lt;br /&gt;
* Functions for Linear Referencing:&lt;br /&gt;
 '''ST_LineInterpolatePoint(geometry A, double measure)''': Returns a point interpolated along a line.&lt;br /&gt;
 '''ST_LineLocatePoint(geometry A, geometry B)''': Returns a float between 0 and 1 representing the location of the closest point on LineString to the given Point.&lt;br /&gt;
 '''ST_Line_Substring(geometry A, double from, double to)''': Return a linestring being a substring of the input one starting and ending at the given fractions of total 2d length.&lt;br /&gt;
 '''ST_Locate_Along_Measure(geometry A, double measure)''': Return a derived geometry collection value with elements that match the specified measure.&lt;br /&gt;
 '''ST_Locate_Between_Measures(geometry A, double from, double to)''': Return a derived geometry collection value with elements that match the specified range of measures inclusively.&lt;br /&gt;
 '''ST_AddMeasure(geometry A, double from, double to)''': Return a derived geometry with measure elements linearly interpolated between the start and end points. If the geometry has no measure dimension, one is added.&lt;br /&gt;
&lt;br /&gt;
*3-D Functions:&lt;br /&gt;
 '''ST_3DClosestPoint''' — Returns the 3-dimensional point on g1 that is closest to g2. This is the first point of the 3D shortest line.&lt;br /&gt;
 '''ST_3DDistance''' — For geometry type Returns the 3-dimensional cartesian minimum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DDWithin''' — For 3d (z) geometry type Returns true if two geometries 3d distance is within number of units.&lt;br /&gt;
 '''ST_3DDFullyWithin''' — Returns true if all of the 3D geometries are within the specified distance of one another.&lt;br /&gt;
 '''ST_3DIntersects''' — Returns TRUE if the Geometries “spatially intersect” in 3d - only for points and linestrings&lt;br /&gt;
 '''ST_3DLongestLine''' — Returns the 3-dimensional longest line between two geometries&lt;br /&gt;
 '''ST_3DMaxDistance''' — For geometry type Returns the 3-dimensional cartesian maximum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DShortestLine''' — Returns the 3-dimensional shortest line between two geometries&lt;br /&gt;
&lt;br /&gt;
*Relevant PostgreSQL Commands:&lt;br /&gt;
 '''\dt *.*''' Show all tables&lt;br /&gt;
 '''\q''' Exit table&lt;br /&gt;
&lt;br /&gt;
*Specifities/ Outliers to consider:&lt;br /&gt;
 New York (decompose)&lt;br /&gt;
 Princeton area (keep Princeton  unique)&lt;br /&gt;
 Reston, Virginia (keep)&lt;br /&gt;
 San Diego (include La Jolla)&lt;br /&gt;
 Silicon Valley (all distinct)&lt;br /&gt;
&lt;br /&gt;
* Continue reading from: https://postgis.net/docs/postgis_installation.html&lt;br /&gt;
&lt;br /&gt;
2017-09-20:&lt;br /&gt;
* Attended first intro to GIS course yesterday&lt;br /&gt;
* Updated above notes on GIS&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-19:&lt;br /&gt;
* Useful functions for spatial joins:&lt;br /&gt;
&lt;br /&gt;
 '''sum(expression)''': aggregate to return a sum for a set of records&lt;br /&gt;
 '''count(expression)''': aggregate to return the size of a set of records&lt;br /&gt;
 '''ST_Area(geometry)''' returns the area of the polygons&lt;br /&gt;
 '''ST_AsText(geometry)''' returns WKT text&lt;br /&gt;
 '''ST_Buffer(geometry, distance)''': For geometry: Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry. For geography: Uses a planar transform wrapper.&lt;br /&gt;
 '''ST_Contains(geometry A, geometry B)''' returns the true if geometry A contains geometry B&lt;br /&gt;
 '''ST_Distance(geometry A, geometry B)''' returns the minimum distance between geometry A and geometry B&lt;br /&gt;
 '''ST_DWithin(geometry A, geometry B, radius)''' returns the true if geometry A is radius distance or less from geometry B&lt;br /&gt;
 '''ST_GeomFromText(text)''' returns geometry&lt;br /&gt;
 '''ST_Intersection(geometry A, geometry B)''': Returns a geometry that represents the shared portion of geomA and geomB. The geography implementation does a transform to geometry to do the intersection and then transform back to WGS84&lt;br /&gt;
 '''ST_Intersects(geometry A, geometry B)''' returns the true if geometry A intersects geometry B&lt;br /&gt;
 '''ST_Length(linestring)''' returns the length of the linestring&lt;br /&gt;
 '''ST_Touches(geometry A, geometry B)''' returns the true if the boundary of geometry A touches geometry B&lt;br /&gt;
 '''ST_Within(geometry A, geometry B)''' returns the true if geometry A is within geometry B&lt;br /&gt;
 geometry_a '''&amp;amp;&amp;amp;''' geometry_b: Returns TRUE if A’s bounding box overlaps B’s.&lt;br /&gt;
 geometry_a '''=''' geometry_b: Returns TRUE if A’s bounding box is the same as B’s.&lt;br /&gt;
 '''ST_SetSRID(geometry, srid)''': Sets the SRID on a geometry to a particular integer value.&lt;br /&gt;
 '''ST_SRID(geometry)''': Returns the spatial reference identifier for the ST_Geometry as defined in spatial_ref_sys table.&lt;br /&gt;
 '''ST_Transform(geometry, srid)''': Returns a new geometry with its coordinates transformed to the SRID referenced by the integer parameter.&lt;br /&gt;
 '''ST_Union()''': Returns a geometry that represents the point set union of the Geometries.&lt;br /&gt;
 '''substring(string [from int] [for int])''': PostgreSQL string function to extract substring matching SQL regular expression.&lt;br /&gt;
 '''ST_Relate(geometry A, geometry B)''': Returns a text string representing the DE9IM relationship between the geometries.&lt;br /&gt;
 '''ST_GeoHash(geometry A)''': Returns a text string representing the GeoHash of the bounds of the object.&lt;br /&gt;
&lt;br /&gt;
*Native functions for geogrphy:&lt;br /&gt;
 '''ST_AsText(geography)''' returns text&lt;br /&gt;
 '''ST_GeographyFromText(text)''' returns geography&lt;br /&gt;
 '''ST_AsBinary(geography)''' returns bytea&lt;br /&gt;
 '''ST_GeogFromWKB(bytea)''' returns geography&lt;br /&gt;
 '''ST_AsSVG(geography)''' returns text&lt;br /&gt;
 '''ST_AsGML(geography)''' returns text&lt;br /&gt;
 '''ST_AsKML(geography)''' returns text&lt;br /&gt;
 '''ST_AsGeoJson(geography)''' returns text&lt;br /&gt;
 '''ST_Distance(geography, geography)''' returns double&lt;br /&gt;
 '''ST_DWithin(geography, geography, float8)''' returns boolean&lt;br /&gt;
 '''ST_Area(geography)''' returns double&lt;br /&gt;
 '''ST_Length(geography)''' returns double&lt;br /&gt;
 '''ST_Covers(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_CoveredBy(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Intersects(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Buffer(geography, float8)''' returns geography [1]&lt;br /&gt;
 '''ST_Intersection(geography, geography)''' returns geography [1]&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/geography.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-18:&lt;br /&gt;
* Read documentation on PostGIS and tiger geocoder&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/joins.html&lt;br /&gt;
&lt;br /&gt;
2017-09-12:&lt;br /&gt;
* Clarified University Matching output file.&lt;br /&gt;
* Helped Christy with pdf-reader, capturing keywords in readable format.&lt;br /&gt;
&lt;br /&gt;
2017-09-11:&lt;br /&gt;
* Ensured that documentation exists for the projects worked on last semester.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
&lt;br /&gt;
2017-04-17:&lt;br /&gt;
* To pull accelerators: Wrote simple python regex-based script that ran on organizations data.&lt;br /&gt;
 Code: E:\McNair\Projects\Accelerators\Crunchbase Snapshot\accelerator keywords.py&lt;br /&gt;
 Matched output (885 mathces) : E:\McNair\Projects\Accelerators\Crunchbase Snapshot\Jeemin_885_accel_matches&lt;br /&gt;
&lt;br /&gt;
2017-04-14:&lt;br /&gt;
* Loaded Federal Grants Data into database&lt;br /&gt;
&lt;br /&gt;
2017-04-12:&lt;br /&gt;
* Finishing up cleaning the columns for Federal Grant Data - NIH. The output excel files can be accessed at:&lt;br /&gt;
 E:\McNair\Projects\Federal Grant Data\NIH\Grants &lt;br /&gt;
 Titled:&lt;br /&gt;
     Jeemin_combined_files 1986-2001.csv&lt;br /&gt;
     Jeemin_combined_files 2002-2012.csv&lt;br /&gt;
     Jeemin_combined_files 2013-2015.csv&lt;br /&gt;
&lt;br /&gt;
* psql table formula:&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE all_grants (&lt;br /&gt;
  APPLICATION_ID integer,&lt;br /&gt;
  ACTIVITY varchar(3),&lt;br /&gt;
  ADMINISTERING_IC varchar(2),&lt;br /&gt;
  APPLICATION_TYPE varchar(1),&lt;br /&gt;
  ARRA_FUNDED varchar(1),&lt;br /&gt;
  AWARD_NOTICE_DATE date, &lt;br /&gt;
  BUDGET_START date,&lt;br /&gt;
  BUDGET_END date, &lt;br /&gt;
  CFDA_CODE varchar(3), &lt;br /&gt;
  CORE_PROJECT_NUM varchar(11),&lt;br /&gt;
  ED_INST_TYPE varchar(30), &lt;br /&gt;
  FOA_NUMBER varchar(13),&lt;br /&gt;
  FULL_PROJECT_NUM varchar(35),&lt;br /&gt;
  FUNDING_ICs varchar(40),&lt;br /&gt;
  FUNDING_MECHANISM varchar(23),&lt;br /&gt;
  FY smallint, &lt;br /&gt;
  IC_NAME varchar(77), &lt;br /&gt;
  NIH_SPENDING_CATS varchar(295), &lt;br /&gt;
  ORG_CITY varchar(20),&lt;br /&gt;
  ORG_COUNTRY varchar(16),&lt;br /&gt;
  ORG_DEPT varchar(30),&lt;br /&gt;
  ORG_DISTRICT smallint, &lt;br /&gt;
  ORG_DUNS integer,&lt;br /&gt;
  ORG_FIPS varchar(2), &lt;br /&gt;
  ORG_NAME varchar(60), &lt;br /&gt;
  ORG_STATE varchar(2), &lt;br /&gt;
  ORG_ZIPCODE integer, &lt;br /&gt;
  PHR varchar(200), &lt;br /&gt;
  PI_IDS varchar(30), &lt;br /&gt;
  PI_NAMEs varchar(200), &lt;br /&gt;
  PROGRAM_OFFICER_NAME varchar(36), &lt;br /&gt;
  PROJECT_START date, &lt;br /&gt;
  PROJECT_END date, &lt;br /&gt;
  PROJECT_TERMS varchar(200), &lt;br /&gt;
  PROJECT_TITLE varchar(244), &lt;br /&gt;
  SERIAL_NUMBER smallint,&lt;br /&gt;
  STUDY_SECTION varchar(4), &lt;br /&gt;
  STUDY_SECTION_NAME varchar(100), &lt;br /&gt;
  SUBPROJECT_ID smallint, &lt;br /&gt;
  SUFFIX varchar(2),&lt;br /&gt;
  SUPPORT_YEAR smallint, &lt;br /&gt;
  DIRECT_COST_AMT integer, &lt;br /&gt;
  INDIRECT_COST_AMT integer, &lt;br /&gt;
  TOTAL_COST integer, &lt;br /&gt;
  TOTAL_COST_SUB_PROJECT integer&lt;br /&gt;
 );&lt;br /&gt;
 \COPY all_grants FROM 'Jeemin_combined_files 1986-2001.csv' WITH DELIMITER AS E'\t' HEADER NULL AS ''CSV&lt;br /&gt;
&lt;br /&gt;
2017-03-29:&lt;br /&gt;
* Troubled by the variety of cases - separating keys by keywords will not work favorably when it hits University of California vs. University of Southern California case - find a way to match University of Southern California first (more specific ones first) - but how to generalize&lt;br /&gt;
&lt;br /&gt;
2017-03-27:&lt;br /&gt;
* Writing code for university matches - decided to go through keys instead of each dataitem. Use keywords in each key to go through the dataitem - misspellings are currently unaccounted for.&lt;br /&gt;
&lt;br /&gt;
2017-03-24:&lt;br /&gt;
* Discussed with Julia &amp;amp; Meghana about university keys to use to count # of occurrences, including aliases and misspellings&lt;br /&gt;
* Thoughts: to use a scoring metric with a key of UNIVERSITY OF CALIFORNIA SYSTEM, it should have a 'better' score when compared to MATHEMATICAL SCIENCES PUBLISHERS C/O UNIVERSITY OF CALIFORNIA BERKELEY or CALIFORNIA AT LOS ANGELES, UNVIERSITY OF than when compared to UNIVERSITY OF SOUTHERN CALIFORNIA, which may pose a challenge when attempting to implement this in a more general sense. In normalizing a string, strip &amp;quot;THE&amp;quot;, &amp;quot;,&amp;quot; and split words by spaces and compare each keyword from the two strings. Deciding on which strings to compare will be another issue - length (within some range maybe) could be an option. &lt;br /&gt;
* Federal Grant Data XML Parser was rerun - same output textfiles&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Read string matching &amp;amp; calculating distance, below are relevant links&lt;br /&gt;
* [http://www.cs.cmu.edu/~wcohen/postscript/ijcai-ws-2003.pdf]&lt;br /&gt;
* [http://web.archive.org/web/20081224234350/http://www.dcs.shef.ac.uk/~sam/stringmetrics.html]&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Talked to Julia about universal matcher, want to combine all University of California's to University of California, The Regents of&lt;br /&gt;
* Converted crunchbase2013 data from mySQL to PostgreSQL, but having trouble with the last table - cb_relationships, complains about syntax error at or near some places - but generally all tables exist in database called crunchbase&lt;br /&gt;
* Federal Grant Data XML Parser was run - the three output textfiles can be found in E:\McNair\Projects\Federal Grant Data\NSF&lt;br /&gt;
&lt;br /&gt;
2017-03-16:&lt;br /&gt;
* Further documented [[University Patent Matching]]&lt;br /&gt;
* Finished writing XML Parser&lt;br /&gt;
&lt;br /&gt;
2017-03-15:&lt;br /&gt;
* Todo: write a wikipage on possible input/output info on string matcher&lt;br /&gt;
* Wrote part of XML parser, extracted yearly data into E:\McNair\Projects\Federal Grant Data\NSF\NSF Extracted Data (up to year 2010)&lt;br /&gt;
&lt;br /&gt;
2017-03-14:&lt;br /&gt;
* Started pulling academy cases but there are too many cases to worry about, in terms of institution of interest. A document is located in E:\McNair\Projects\University Patents\academies_verify_cases.txt&lt;br /&gt;
* Need Julia/Meghana to look through the hits and see which are relevant &amp;amp; extract pattern from there. &lt;br /&gt;
* Having trouble outputting txt file without double quotes around every line. &lt;br /&gt;
* Thinking that one text file should be output for all keywords instead of having one each, to avoid overlap (ex) COLLEGE and UNIVERSITY are both keywords; ALBERT EINSTEIN COLLEGE OF YESHIVA UNIVERSITY will be hit twice if it were counted as two separate instances, one accounting for COLLEGE and the other for UNIVERSITY) - either in the form of if-elseif statements or one big regex check.&lt;br /&gt;
&lt;br /&gt;
2017-03-13:&lt;br /&gt;
* For University Patent Data Matching - matched SCHOOL (output: E:\McNair\Projects\University Patents\school_pulled_from_assignee_list_USA) and matched INSTITUTE(output: E:\McNair\Projects\University Patents\institute_pulled_from_assignee_list_USA). &lt;br /&gt;
* [[University Patent Matching]] &lt;br /&gt;
* To be worked on later: Grant XML parsing &amp;amp; general name matcher&lt;br /&gt;
&lt;br /&gt;
2017-03-08:&lt;br /&gt;
* Wrote regex pattern that identifies all &amp;quot;university&amp;quot; matchings - can be found in E:\McNair\Projects\University Patents\university_pulled_from_assignee_list_USA -- is an output file&lt;br /&gt;
* Talked to Sonia, but didn't come to solid conclusion on identifying whether key words associate with city or country by running a python function&lt;br /&gt;
* Output sql tables from finished run of Jeemin_FDATrial_as_key_data_ripping.py &lt;br /&gt;
* Ran through assigneelist_USA.txt to see how many different ways UNIVERSITY could be spelled wrong. There were many.&lt;br /&gt;
* Tried to logic through creating a pattern that could catch all different versions of UNIVERSITY. Discuss further on whether UNIVERSITIES and those that include UNIVERSITIES but include  INC in the end should be pulled as relevant information&lt;br /&gt;
&lt;br /&gt;
2017-03-06:&lt;br /&gt;
* [[Installing python in a database]]&lt;br /&gt;
* Added building Python function section to [[Working with PostgreSQL]] at the bottom of the page.&lt;br /&gt;
* Ran FDA Trial data ripping again, as the text output files were wiped. &lt;br /&gt;
* Plan on discussing with Julia and Meghana again about pulling universities and other relevant institutions from the Assignee List USA. &lt;br /&gt;
* Talked to Sonia about pulling city, state, zipcode information, hence python was installed in a database. Will work with Sonia on Wednesday afternoon and see how best a regex function could be implemented&lt;br /&gt;
&lt;br /&gt;
2017-03-03:&lt;br /&gt;
* Attempted to output sql tables&lt;br /&gt;
&lt;br /&gt;
2017-03-01:&lt;br /&gt;
* Started re-running Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
&lt;br /&gt;
2017-02-27:&lt;br /&gt;
* Finished producing tables from Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
* Talked to Julia about LinkedIn data extracting - to be discussed further with Julia &amp;amp; Peter.&lt;br /&gt;
* Started web crawler for Wikipedia - currently pulls Endowment, Academic staff, students, undergraduates, and postgraduates info found on Rice Wikipedia page. Can be found in : E:\McNair\Projects\University Patents\Jeemin_University_wikipedia_crawler.py&lt;br /&gt;
&lt;br /&gt;
2017-02-24:&lt;br /&gt;
* Continued working on producing multiple tables - first two are done. Was working on location, as there are multiple location tags per location.&lt;br /&gt;
&lt;br /&gt;
2017-02-22:&lt;br /&gt;
* Finished Jeemin_FDATrial_as_key_data_ripping.py (E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py), which outputs to E:\McNair\Projects\FDA Trials\Jeemin_Project\general_data_ripping_output.txt; TODO: output four different tables &amp;amp; replace the write in the same for-loop as going through each file&lt;br /&gt;
&lt;br /&gt;
2017-02-20:&lt;br /&gt;
* Continued working on Jeemin_FDATrial_as_key_data_ripping.py to find tags and place all of those information in a list. The other zipcode file did not finish executing after 2+ hours of running it - considering the possibility of splitting the record file into smaller bits, or running the processing on a faster machine.&lt;br /&gt;
&lt;br /&gt;
2017-02-17:&lt;br /&gt;
* Completed code for counting the number of occurrences for each unique zipcode. (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_Running_File.py). It has been running for 20+min because of the comprehensive XML data files. Meanwhile started coding to create a dictionary with the keys corresponding to each unique trial ID, mapped to every other information (location, sponsors, phase, drugs ...etc.) (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py).&lt;br /&gt;
&lt;br /&gt;
2017-02-15:&lt;br /&gt;
* Discussed with Catherine what to do with FDA Trial data and decided to have a dictionary with zip-codes as keys and number of trials occurred in that zipcode as values. Was still attempting to loop through the files without the code having to exist in the same directory as the XML files. Plan to write to excel via tsv, with zip-code as one column and # of occurrence as the other.&lt;br /&gt;
&lt;br /&gt;
2017-02-13:&lt;br /&gt;
* Goals (for trials): 1) Build ER Diagram 2) For each entity, get XML snippet 3) Build a parser/ripper for single file; the python parser can be found at: E:\McNair\Projects\FDA Trials\Jeemin_Project&lt;br /&gt;
&lt;br /&gt;
2017-02-08:&lt;br /&gt;
* Attempted to come up with possible cases for locating the description of accelerators - pick up from extracting bodies of text from the about page (given that it exists)&lt;br /&gt;
* [[Trial Data Project]]&lt;br /&gt;
&lt;br /&gt;
2017-02-06:&lt;br /&gt;
* Set up wikiPage &amp;amp; remote desktop. &lt;br /&gt;
* Started working on python version of web crawler. So far it successfully prints out a catchphrase/ description for one website. To be worked on. The python file can be found in: E:\McNair\Projects\Accelerators\Python WebCrawler\webcrawlerpython.py&lt;br /&gt;
&lt;br /&gt;
[[Category:Work Log]]&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22295</id>
		<title>Jeemin Sim (Work Log)</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22295"/>
		<updated>2017-12-05T16:47:25Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Fall 2017 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Jeemin Sim]] [[Work Logs]] [[Jeemin Sim (WorkLog)|(log page)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2017-12-05:&lt;br /&gt;
* Uploaded tables with KML files in TIF folder in bulk(E:) drive&lt;br /&gt;
** Allegheny County&lt;br /&gt;
** Atlanta&lt;br /&gt;
** Chicago&lt;br /&gt;
** Columbus, OH&lt;br /&gt;
** Dublin, OH&lt;br /&gt;
** Vermont&lt;br /&gt;
** Washington, D.C.&lt;br /&gt;
&lt;br /&gt;
*Updated documentation for: &lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/TIF_Project#Uploading_TIF_Data_onto_database_.28tigertest.29&lt;br /&gt;
&lt;br /&gt;
2017-12-04:&lt;br /&gt;
* To upload KML file into database with specified table name: &lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
* chicagotif table now resides in tigertest database&lt;br /&gt;
&lt;br /&gt;
2017-11-30:&lt;br /&gt;
* Displayed map with TIF districts and startups&lt;br /&gt;
* Location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\McNair_Color_Chicago_TIF_and_startups.png&lt;br /&gt;
* Added information and steps to ArcMap/ArcGIS documentation page&lt;br /&gt;
* Create a project page for 'Working with POSTGIS' and add instructions for uploading KML file onto POSTGIS&lt;br /&gt;
** Command used : &lt;br /&gt;
*** Logged in as : researcher@McNairDBServ&lt;br /&gt;
 /bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml &lt;br /&gt;
* chicago TIF kml file currently downloaded in tigertest with a table name of Layer0&lt;br /&gt;
** Figure out how to change layer name while loading kml file&lt;br /&gt;
** Instructions pulled from : http://wiki.wildsong.biz/index.php/Loading_data_into_PostGIS#Loading_data_from_KMZ_files&lt;br /&gt;
&lt;br /&gt;
2017-11-28:&lt;br /&gt;
* Created and edited [[ArcMap / ArcGIS Documentation]]&lt;br /&gt;
* Plotted points for TIFS and Startups in Chicago in one map.&lt;br /&gt;
** Location: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\Jeemin_Chicago_TIF_and_Startups_Attempt1&lt;br /&gt;
* Used https://mygeodata.cloud/result to convert from KML file to CSV (which was then saved as txt file to be uploaded onto ArcMap)&lt;br /&gt;
* Text files located in Local Disk (C:) Drive&lt;br /&gt;
&lt;br /&gt;
2017-11-27:&lt;br /&gt;
*Download Chicago TIF data&lt;br /&gt;
&lt;br /&gt;
2017-11-13:&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
2017-11-09: &lt;br /&gt;
* Notes on data downloaded:&lt;br /&gt;
** Year 2010-2012 data are based on total population, not 25 yrs or over (case for all other tables)&lt;br /&gt;
*** Record appears five times total, with same exact column name&lt;br /&gt;
***For exmaple: 'Total; Estimate; High school graduate (includes equivalency)' appears five times, with different values.&lt;br /&gt;
* TODO:&lt;br /&gt;
** Make Projects page for ACS Data&lt;br /&gt;
***[[American Community Survey (ACS) Data]]&lt;br /&gt;
&lt;br /&gt;
2017-11-07:&lt;br /&gt;
*Yesterday, narrowed down columns of interest from ACS_S1501_educationattain_2016 table.&lt;br /&gt;
&lt;br /&gt;
 Id&lt;br /&gt;
 Id2&lt;br /&gt;
 Geography&lt;br /&gt;
 Total; Estimate; Population 25 years and over&lt;br /&gt;
 Total; Estimate; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Associate's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Bachelor's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Percent high school graduate or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent high school graduate or higher&lt;br /&gt;
 Percent; Estimate; Percent bachelor's degree or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent bachelor's degree or higher&lt;br /&gt;
&lt;br /&gt;
*Complications:&lt;br /&gt;
**For csv files corresponding to years 2015 &amp;amp; 2016, all of the above columns exist.&lt;br /&gt;
**For csv files corresponding to years 2005 - 2014, no 'Percent' columns exist&lt;br /&gt;
*** Instead their 'Total' columns are percentage values&lt;br /&gt;
**For csv file corresponding to year 2005, columns regarding Graduate or professional degree are labeled differently.&lt;br /&gt;
**2012 data doesn't correspond to Population 25 years and over.&lt;br /&gt;
&lt;br /&gt;
*Temporary Solution:&lt;br /&gt;
**Since the above problems may be specific to this set of tables, will go through csv files and adjust columns.&lt;br /&gt;
&lt;br /&gt;
*Python script location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\pullCertainColumns.py&lt;br /&gt;
&lt;br /&gt;
2017-10-31:&lt;br /&gt;
* Finished doanloading files from ACS.&lt;br /&gt;
* Started loading tables into tigertest.&lt;br /&gt;
* Commands run could be found in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\DataLoading_SQL_Commands.txt&lt;br /&gt;
&lt;br /&gt;
2017-10-30:&lt;br /&gt;
* Downloaded data from ACS, to be continued&lt;br /&gt;
* File path: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data&lt;br /&gt;
* Fields of interest: &lt;br /&gt;
 S1401 SCHOOL ENROLLMENT&lt;br /&gt;
 S1501 EDUCATIONAL ATTAINMENT&lt;br /&gt;
 S2301 EMPLOYMENT STATUS&lt;br /&gt;
 B01003 TOTAL POPULATION&lt;br /&gt;
 B02001 RACE&lt;br /&gt;
 B07201 GEOGRAPHICAL MOBILITY&lt;br /&gt;
 B08303 TRAVEL TIME TO WORK&lt;br /&gt;
 B19013 MEDIAN HOUSEHOLD INCOME&lt;br /&gt;
 B19053 SELF-EMPLOYMENT INCOME IN THE PAST 12 MONTHS FOR HOUSEHOLDS&lt;br /&gt;
 B19083 GINI INDEX OF INCOME INEQUALITY&lt;br /&gt;
 B25003 TENURE&lt;br /&gt;
 B25105 MEDIAN MONTHLY HOUSING COSTS&lt;br /&gt;
 B28011 INTERNET SUBSCRIPTIONS IN HOUSEHOLD&lt;br /&gt;
 G001 GEOGRAPHIC IDENTIFIERS&lt;br /&gt;
&lt;br /&gt;
2017-10-23:&lt;br /&gt;
* Talked to Ed with Peter &amp;amp; Oliver about upcoming tasks &amp;amp; projects.&lt;br /&gt;
* Loaded acs_place table 2017 (does not contain population) on tigertest.&lt;br /&gt;
** SQL commands used:&lt;br /&gt;
&lt;br /&gt;
 DROP TABLE acs_place;&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE acs_place (&lt;br /&gt;
        USPS varchar(5),&lt;br /&gt;
        GEOID  varchar(30),&lt;br /&gt;
        ANSICODE varchar(30),&lt;br /&gt;
        NAME varchar(100),&lt;br /&gt;
        LSAD varchar(30),&lt;br /&gt;
        FUNCSTAT varchar(10),&lt;br /&gt;
        ALAND varchar(30),&lt;br /&gt;
        AWATER varchar(30),&lt;br /&gt;
        ALAND_SQMI varchar(30),&lt;br /&gt;
        AWATER_SQMI varchar(30),&lt;br /&gt;
        INTPTLAT varchar(30),&lt;br /&gt;
        INTPTLONG varchar(30)&lt;br /&gt;
 );&lt;br /&gt;
&lt;br /&gt;
 \COPY acs_place FROM '/bulk/2017_Gaz_place_national.txt';&lt;br /&gt;
 --COPY 29578&lt;br /&gt;
&lt;br /&gt;
* TODO:&lt;br /&gt;
** Find acs place 2016 data for population&lt;br /&gt;
** Find larger acs files, ideally at the place level&lt;br /&gt;
** Provide more documentation on POSTGIS &amp;amp; geocoding&lt;br /&gt;
&lt;br /&gt;
2017-10-16:&lt;br /&gt;
* Exported maps of points from the Bay Area each year. &lt;br /&gt;
** Map used location: E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year\BayAreaEveryYearMap&lt;br /&gt;
** Zoom scale: 1:650.000&lt;br /&gt;
* Location of Bay Area Points png files: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year&lt;br /&gt;
&lt;br /&gt;
2017-10-10:&lt;br /&gt;
*Discoveries/ Struggles regarding.gdb to .shp file conversion:&lt;br /&gt;
** Esri Production Mapping (costly)&lt;br /&gt;
*** License needs to be purchasesd: http://www.esri.com/software/arcgis/extensions/production-mapping/pricing&lt;br /&gt;
** Use ogr2ogr from gdal package&lt;br /&gt;
*** https://gis.stackexchange.com/questions/14432/migrating-geodatabase-data-into-postgis-without-esri-apps&lt;br /&gt;
*** Command: ogr2ogr -f &amp;quot;ESRI Shapefile&amp;quot; [Destination of shapefile] [path to gdb file]&lt;br /&gt;
*** Problem installing gdal&lt;br /&gt;
&lt;br /&gt;
2017-10-09:&lt;br /&gt;
* TODO'S:&lt;br /&gt;
** Downloading data onto tigertest&lt;br /&gt;
*** Road&lt;br /&gt;
*** Railway&lt;br /&gt;
*** Coastline&lt;br /&gt;
*** Instructions: http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Bulk_Download_TIGER_Shapefiles&lt;br /&gt;
** Configure census data from American Community Survey (ACS)&lt;br /&gt;
*** 1) Work out what data is of our interest (confirm ACS)&lt;br /&gt;
*** 2) Determine appropriate shape file unit: &lt;br /&gt;
**** census block vs. census block group vs. census track&lt;br /&gt;
*** 3) Load into tigertest&lt;br /&gt;
&lt;br /&gt;
* Done:&lt;br /&gt;
** Downloaded data from https://www.census.gov/cgi-bin/geo/shapefiles/index.php&lt;br /&gt;
  tl_2017_us_coastline -- 4209&lt;br /&gt;
  tl_2017_us_primaryroads -- 11574 &lt;br /&gt;
  tl_2017_us_rails -- 176237&lt;br /&gt;
** Link found to potentially download ACS data: https://www.census.gov/geo/maps-data/data/tiger-data.html&lt;br /&gt;
*** But most files on it come with .gdb extension and not .shp&lt;br /&gt;
&lt;br /&gt;
2017-10-03:&lt;br /&gt;
* Installed PostGIS &amp;amp; is now visible on pgAdmin III&lt;br /&gt;
&lt;br /&gt;
* ArcGIS (connect to postgis database):&lt;br /&gt;
** 1) Open ArcMap&lt;br /&gt;
** 2) Either open blank or open existing file/project&lt;br /&gt;
** 3) Click on 'Add Data' button with a cross and a yellow diamond (under Selection toolbar)&lt;br /&gt;
** 4) Go to the top-most directory by pressing on the arrow that points left-then-up (on the left of home button)&lt;br /&gt;
** 5) Click on 'Database Connections'&lt;br /&gt;
** 6) Click on 'Add Database Connection' (if Connection to localhost.sde) does not exist already)&lt;br /&gt;
** 7) Fill in the following fields:&lt;br /&gt;
*** Database Platform: PostgreSQL&lt;br /&gt;
*** Instance: localhost&lt;br /&gt;
*** User name: postgres&lt;br /&gt;
*** Password: &lt;br /&gt;
*** Database: tigertest&lt;br /&gt;
** 8) Press 'OK'&lt;br /&gt;
** 9) Now you'll have 'Connection to localhost.sde' in your Database Connections&lt;br /&gt;
** 10) Double click on 'Connection to localhost.sde'&lt;br /&gt;
** 11) Double click on the table of interest&lt;br /&gt;
** 12) Click 'Finish'&lt;br /&gt;
** 13) You'll see information populated on map, as one of the 'Layers'&lt;br /&gt;
*** Tested with: tigertest.public.copointplacescontains&lt;br /&gt;
&lt;br /&gt;
* On running &amp;amp; altering Oliver's script: &lt;br /&gt;
** Location: E:\McNair\Projects\OliverLovesCircles\src\python\vc_circles.py&lt;br /&gt;
** Ed manipulated file names so that underscores would replace dots (St.Louis --&amp;gt; St_Louis)&lt;br /&gt;
** Takes in instances and sweep times as part of the argument, but not impactful as those variables are hardcoded in the script&lt;br /&gt;
** Ran vc_circles.py with the following variables with changed values:&lt;br /&gt;
*** SWEEP_CYCLE_SECONDS = 10 (used to be 30)&lt;br /&gt;
*** NUMBER_INSTANCES = 16 (used to be 8)&lt;br /&gt;
** New output to be found in: E:\McNair\Projects\OliverLovesCircles\out&lt;br /&gt;
&lt;br /&gt;
2017-10-02:&lt;br /&gt;
* Talked to Harrison &amp;amp; Peter regarding ArcGIS&lt;br /&gt;
** Currently have points plotted on Houston&lt;br /&gt;
** Trouble interpreting geometry type, as currently reads in from text file&lt;br /&gt;
** Documents located in : E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS&lt;br /&gt;
* Attempted to install PostGIS spatial extention from PostgreSQL but getting 'spatial database creation failed' error message.&lt;br /&gt;
** Referenced instructions: &lt;br /&gt;
*** https://www.gpsfiledepot.com/tutorials/installing-and-setting-up-postgresql-with-postgis/&lt;br /&gt;
*** http://www.bostongis.com/PrinterFriendly.aspx?content_name=postgis_tut01&lt;br /&gt;
&lt;br /&gt;
2017-09-26:&lt;br /&gt;
* Created a table that maps a state to the database name.&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Translating_Table_names_to_corresponding_States&lt;br /&gt;
* Added more GIS-information (functions, realm &amp;amp; outliers to consider)&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration#GIS_Resources&lt;br /&gt;
* Visualization in PostGIS or connecting to ArcGIS for visualization (import/export data)&lt;br /&gt;
* Spatial indexing:&lt;br /&gt;
** http://revenant.ca/www/postgis/workshop/indexing.html&lt;br /&gt;
&lt;br /&gt;
2017-09-25:&lt;br /&gt;
* Talked to Ed about GIS, Census data, and going about determining the correctness of reported 'place.' Currently script makes a cross product of each reported place and an existing place, outputting a column of boolean value to indicate whether the reported place's coordinates fell within a place's geometric boundaries. One other way of going about this which we discussed is to first check if the reported place does fall within that place's boundaries. If it isn't, we'll go about the cross product method.&lt;br /&gt;
&lt;br /&gt;
* To add documentation : &lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration&lt;br /&gt;
&lt;br /&gt;
* Discussed the need to maintain venture capital database.&lt;br /&gt;
&lt;br /&gt;
*Relevant File paths:&lt;br /&gt;
**E:\McNair\Projects\Agglomeration\TestGIS.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\ProecssingCoLevelSimple.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\CitiesWithGT10Active.txt&lt;br /&gt;
&lt;br /&gt;
2017-09-21:&lt;br /&gt;
* Functions for Linear Referencing:&lt;br /&gt;
 '''ST_LineInterpolatePoint(geometry A, double measure)''': Returns a point interpolated along a line.&lt;br /&gt;
 '''ST_LineLocatePoint(geometry A, geometry B)''': Returns a float between 0 and 1 representing the location of the closest point on LineString to the given Point.&lt;br /&gt;
 '''ST_Line_Substring(geometry A, double from, double to)''': Return a linestring being a substring of the input one starting and ending at the given fractions of total 2d length.&lt;br /&gt;
 '''ST_Locate_Along_Measure(geometry A, double measure)''': Return a derived geometry collection value with elements that match the specified measure.&lt;br /&gt;
 '''ST_Locate_Between_Measures(geometry A, double from, double to)''': Return a derived geometry collection value with elements that match the specified range of measures inclusively.&lt;br /&gt;
 '''ST_AddMeasure(geometry A, double from, double to)''': Return a derived geometry with measure elements linearly interpolated between the start and end points. If the geometry has no measure dimension, one is added.&lt;br /&gt;
&lt;br /&gt;
*3-D Functions:&lt;br /&gt;
 '''ST_3DClosestPoint''' — Returns the 3-dimensional point on g1 that is closest to g2. This is the first point of the 3D shortest line.&lt;br /&gt;
 '''ST_3DDistance''' — For geometry type Returns the 3-dimensional cartesian minimum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DDWithin''' — For 3d (z) geometry type Returns true if two geometries 3d distance is within number of units.&lt;br /&gt;
 '''ST_3DDFullyWithin''' — Returns true if all of the 3D geometries are within the specified distance of one another.&lt;br /&gt;
 '''ST_3DIntersects''' — Returns TRUE if the Geometries “spatially intersect” in 3d - only for points and linestrings&lt;br /&gt;
 '''ST_3DLongestLine''' — Returns the 3-dimensional longest line between two geometries&lt;br /&gt;
 '''ST_3DMaxDistance''' — For geometry type Returns the 3-dimensional cartesian maximum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DShortestLine''' — Returns the 3-dimensional shortest line between two geometries&lt;br /&gt;
&lt;br /&gt;
*Relevant PostgreSQL Commands:&lt;br /&gt;
 '''\dt *.*''' Show all tables&lt;br /&gt;
 '''\q''' Exit table&lt;br /&gt;
&lt;br /&gt;
*Specifities/ Outliers to consider:&lt;br /&gt;
 New York (decompose)&lt;br /&gt;
 Princeton area (keep Princeton  unique)&lt;br /&gt;
 Reston, Virginia (keep)&lt;br /&gt;
 San Diego (include La Jolla)&lt;br /&gt;
 Silicon Valley (all distinct)&lt;br /&gt;
&lt;br /&gt;
* Continue reading from: https://postgis.net/docs/postgis_installation.html&lt;br /&gt;
&lt;br /&gt;
2017-09-20:&lt;br /&gt;
* Attended first intro to GIS course yesterday&lt;br /&gt;
* Updated above notes on GIS&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-19:&lt;br /&gt;
* Useful functions for spatial joins:&lt;br /&gt;
&lt;br /&gt;
 '''sum(expression)''': aggregate to return a sum for a set of records&lt;br /&gt;
 '''count(expression)''': aggregate to return the size of a set of records&lt;br /&gt;
 '''ST_Area(geometry)''' returns the area of the polygons&lt;br /&gt;
 '''ST_AsText(geometry)''' returns WKT text&lt;br /&gt;
 '''ST_Buffer(geometry, distance)''': For geometry: Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry. For geography: Uses a planar transform wrapper.&lt;br /&gt;
 '''ST_Contains(geometry A, geometry B)''' returns the true if geometry A contains geometry B&lt;br /&gt;
 '''ST_Distance(geometry A, geometry B)''' returns the minimum distance between geometry A and geometry B&lt;br /&gt;
 '''ST_DWithin(geometry A, geometry B, radius)''' returns the true if geometry A is radius distance or less from geometry B&lt;br /&gt;
 '''ST_GeomFromText(text)''' returns geometry&lt;br /&gt;
 '''ST_Intersection(geometry A, geometry B)''': Returns a geometry that represents the shared portion of geomA and geomB. The geography implementation does a transform to geometry to do the intersection and then transform back to WGS84&lt;br /&gt;
 '''ST_Intersects(geometry A, geometry B)''' returns the true if geometry A intersects geometry B&lt;br /&gt;
 '''ST_Length(linestring)''' returns the length of the linestring&lt;br /&gt;
 '''ST_Touches(geometry A, geometry B)''' returns the true if the boundary of geometry A touches geometry B&lt;br /&gt;
 '''ST_Within(geometry A, geometry B)''' returns the true if geometry A is within geometry B&lt;br /&gt;
 geometry_a '''&amp;amp;&amp;amp;''' geometry_b: Returns TRUE if A’s bounding box overlaps B’s.&lt;br /&gt;
 geometry_a '''=''' geometry_b: Returns TRUE if A’s bounding box is the same as B’s.&lt;br /&gt;
 '''ST_SetSRID(geometry, srid)''': Sets the SRID on a geometry to a particular integer value.&lt;br /&gt;
 '''ST_SRID(geometry)''': Returns the spatial reference identifier for the ST_Geometry as defined in spatial_ref_sys table.&lt;br /&gt;
 '''ST_Transform(geometry, srid)''': Returns a new geometry with its coordinates transformed to the SRID referenced by the integer parameter.&lt;br /&gt;
 '''ST_Union()''': Returns a geometry that represents the point set union of the Geometries.&lt;br /&gt;
 '''substring(string [from int] [for int])''': PostgreSQL string function to extract substring matching SQL regular expression.&lt;br /&gt;
 '''ST_Relate(geometry A, geometry B)''': Returns a text string representing the DE9IM relationship between the geometries.&lt;br /&gt;
 '''ST_GeoHash(geometry A)''': Returns a text string representing the GeoHash of the bounds of the object.&lt;br /&gt;
&lt;br /&gt;
*Native functions for geogrphy:&lt;br /&gt;
 '''ST_AsText(geography)''' returns text&lt;br /&gt;
 '''ST_GeographyFromText(text)''' returns geography&lt;br /&gt;
 '''ST_AsBinary(geography)''' returns bytea&lt;br /&gt;
 '''ST_GeogFromWKB(bytea)''' returns geography&lt;br /&gt;
 '''ST_AsSVG(geography)''' returns text&lt;br /&gt;
 '''ST_AsGML(geography)''' returns text&lt;br /&gt;
 '''ST_AsKML(geography)''' returns text&lt;br /&gt;
 '''ST_AsGeoJson(geography)''' returns text&lt;br /&gt;
 '''ST_Distance(geography, geography)''' returns double&lt;br /&gt;
 '''ST_DWithin(geography, geography, float8)''' returns boolean&lt;br /&gt;
 '''ST_Area(geography)''' returns double&lt;br /&gt;
 '''ST_Length(geography)''' returns double&lt;br /&gt;
 '''ST_Covers(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_CoveredBy(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Intersects(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Buffer(geography, float8)''' returns geography [1]&lt;br /&gt;
 '''ST_Intersection(geography, geography)''' returns geography [1]&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/geography.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-18:&lt;br /&gt;
* Read documentation on PostGIS and tiger geocoder&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/joins.html&lt;br /&gt;
&lt;br /&gt;
2017-09-12:&lt;br /&gt;
* Clarified University Matching output file.&lt;br /&gt;
* Helped Christy with pdf-reader, capturing keywords in readable format.&lt;br /&gt;
&lt;br /&gt;
2017-09-11:&lt;br /&gt;
* Ensured that documentation exists for the projects worked on last semester.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
&lt;br /&gt;
2017-04-17:&lt;br /&gt;
* To pull accelerators: Wrote simple python regex-based script that ran on organizations data.&lt;br /&gt;
 Code: E:\McNair\Projects\Accelerators\Crunchbase Snapshot\accelerator keywords.py&lt;br /&gt;
 Matched output (885 mathces) : E:\McNair\Projects\Accelerators\Crunchbase Snapshot\Jeemin_885_accel_matches&lt;br /&gt;
&lt;br /&gt;
2017-04-14:&lt;br /&gt;
* Loaded Federal Grants Data into database&lt;br /&gt;
&lt;br /&gt;
2017-04-12:&lt;br /&gt;
* Finishing up cleaning the columns for Federal Grant Data - NIH. The output excel files can be accessed at:&lt;br /&gt;
 E:\McNair\Projects\Federal Grant Data\NIH\Grants &lt;br /&gt;
 Titled:&lt;br /&gt;
     Jeemin_combined_files 1986-2001.csv&lt;br /&gt;
     Jeemin_combined_files 2002-2012.csv&lt;br /&gt;
     Jeemin_combined_files 2013-2015.csv&lt;br /&gt;
&lt;br /&gt;
* psql table formula:&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE all_grants (&lt;br /&gt;
  APPLICATION_ID integer,&lt;br /&gt;
  ACTIVITY varchar(3),&lt;br /&gt;
  ADMINISTERING_IC varchar(2),&lt;br /&gt;
  APPLICATION_TYPE varchar(1),&lt;br /&gt;
  ARRA_FUNDED varchar(1),&lt;br /&gt;
  AWARD_NOTICE_DATE date, &lt;br /&gt;
  BUDGET_START date,&lt;br /&gt;
  BUDGET_END date, &lt;br /&gt;
  CFDA_CODE varchar(3), &lt;br /&gt;
  CORE_PROJECT_NUM varchar(11),&lt;br /&gt;
  ED_INST_TYPE varchar(30), &lt;br /&gt;
  FOA_NUMBER varchar(13),&lt;br /&gt;
  FULL_PROJECT_NUM varchar(35),&lt;br /&gt;
  FUNDING_ICs varchar(40),&lt;br /&gt;
  FUNDING_MECHANISM varchar(23),&lt;br /&gt;
  FY smallint, &lt;br /&gt;
  IC_NAME varchar(77), &lt;br /&gt;
  NIH_SPENDING_CATS varchar(295), &lt;br /&gt;
  ORG_CITY varchar(20),&lt;br /&gt;
  ORG_COUNTRY varchar(16),&lt;br /&gt;
  ORG_DEPT varchar(30),&lt;br /&gt;
  ORG_DISTRICT smallint, &lt;br /&gt;
  ORG_DUNS integer,&lt;br /&gt;
  ORG_FIPS varchar(2), &lt;br /&gt;
  ORG_NAME varchar(60), &lt;br /&gt;
  ORG_STATE varchar(2), &lt;br /&gt;
  ORG_ZIPCODE integer, &lt;br /&gt;
  PHR varchar(200), &lt;br /&gt;
  PI_IDS varchar(30), &lt;br /&gt;
  PI_NAMEs varchar(200), &lt;br /&gt;
  PROGRAM_OFFICER_NAME varchar(36), &lt;br /&gt;
  PROJECT_START date, &lt;br /&gt;
  PROJECT_END date, &lt;br /&gt;
  PROJECT_TERMS varchar(200), &lt;br /&gt;
  PROJECT_TITLE varchar(244), &lt;br /&gt;
  SERIAL_NUMBER smallint,&lt;br /&gt;
  STUDY_SECTION varchar(4), &lt;br /&gt;
  STUDY_SECTION_NAME varchar(100), &lt;br /&gt;
  SUBPROJECT_ID smallint, &lt;br /&gt;
  SUFFIX varchar(2),&lt;br /&gt;
  SUPPORT_YEAR smallint, &lt;br /&gt;
  DIRECT_COST_AMT integer, &lt;br /&gt;
  INDIRECT_COST_AMT integer, &lt;br /&gt;
  TOTAL_COST integer, &lt;br /&gt;
  TOTAL_COST_SUB_PROJECT integer&lt;br /&gt;
 );&lt;br /&gt;
 \COPY all_grants FROM 'Jeemin_combined_files 1986-2001.csv' WITH DELIMITER AS E'\t' HEADER NULL AS ''CSV&lt;br /&gt;
&lt;br /&gt;
2017-03-29:&lt;br /&gt;
* Troubled by the variety of cases - separating keys by keywords will not work favorably when it hits University of California vs. University of Southern California case - find a way to match University of Southern California first (more specific ones first) - but how to generalize&lt;br /&gt;
&lt;br /&gt;
2017-03-27:&lt;br /&gt;
* Writing code for university matches - decided to go through keys instead of each dataitem. Use keywords in each key to go through the dataitem - misspellings are currently unaccounted for.&lt;br /&gt;
&lt;br /&gt;
2017-03-24:&lt;br /&gt;
* Discussed with Julia &amp;amp; Meghana about university keys to use to count # of occurrences, including aliases and misspellings&lt;br /&gt;
* Thoughts: to use a scoring metric with a key of UNIVERSITY OF CALIFORNIA SYSTEM, it should have a 'better' score when compared to MATHEMATICAL SCIENCES PUBLISHERS C/O UNIVERSITY OF CALIFORNIA BERKELEY or CALIFORNIA AT LOS ANGELES, UNVIERSITY OF than when compared to UNIVERSITY OF SOUTHERN CALIFORNIA, which may pose a challenge when attempting to implement this in a more general sense. In normalizing a string, strip &amp;quot;THE&amp;quot;, &amp;quot;,&amp;quot; and split words by spaces and compare each keyword from the two strings. Deciding on which strings to compare will be another issue - length (within some range maybe) could be an option. &lt;br /&gt;
* Federal Grant Data XML Parser was rerun - same output textfiles&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Read string matching &amp;amp; calculating distance, below are relevant links&lt;br /&gt;
* [http://www.cs.cmu.edu/~wcohen/postscript/ijcai-ws-2003.pdf]&lt;br /&gt;
* [http://web.archive.org/web/20081224234350/http://www.dcs.shef.ac.uk/~sam/stringmetrics.html]&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Talked to Julia about universal matcher, want to combine all University of California's to University of California, The Regents of&lt;br /&gt;
* Converted crunchbase2013 data from mySQL to PostgreSQL, but having trouble with the last table - cb_relationships, complains about syntax error at or near some places - but generally all tables exist in database called crunchbase&lt;br /&gt;
* Federal Grant Data XML Parser was run - the three output textfiles can be found in E:\McNair\Projects\Federal Grant Data\NSF&lt;br /&gt;
&lt;br /&gt;
2017-03-16:&lt;br /&gt;
* Further documented [[University Patent Matching]]&lt;br /&gt;
* Finished writing XML Parser&lt;br /&gt;
&lt;br /&gt;
2017-03-15:&lt;br /&gt;
* Todo: write a wikipage on possible input/output info on string matcher&lt;br /&gt;
* Wrote part of XML parser, extracted yearly data into E:\McNair\Projects\Federal Grant Data\NSF\NSF Extracted Data (up to year 2010)&lt;br /&gt;
&lt;br /&gt;
2017-03-14:&lt;br /&gt;
* Started pulling academy cases but there are too many cases to worry about, in terms of institution of interest. A document is located in E:\McNair\Projects\University Patents\academies_verify_cases.txt&lt;br /&gt;
* Need Julia/Meghana to look through the hits and see which are relevant &amp;amp; extract pattern from there. &lt;br /&gt;
* Having trouble outputting txt file without double quotes around every line. &lt;br /&gt;
* Thinking that one text file should be output for all keywords instead of having one each, to avoid overlap (ex) COLLEGE and UNIVERSITY are both keywords; ALBERT EINSTEIN COLLEGE OF YESHIVA UNIVERSITY will be hit twice if it were counted as two separate instances, one accounting for COLLEGE and the other for UNIVERSITY) - either in the form of if-elseif statements or one big regex check.&lt;br /&gt;
&lt;br /&gt;
2017-03-13:&lt;br /&gt;
* For University Patent Data Matching - matched SCHOOL (output: E:\McNair\Projects\University Patents\school_pulled_from_assignee_list_USA) and matched INSTITUTE(output: E:\McNair\Projects\University Patents\institute_pulled_from_assignee_list_USA). &lt;br /&gt;
* [[University Patent Matching]] &lt;br /&gt;
* To be worked on later: Grant XML parsing &amp;amp; general name matcher&lt;br /&gt;
&lt;br /&gt;
2017-03-08:&lt;br /&gt;
* Wrote regex pattern that identifies all &amp;quot;university&amp;quot; matchings - can be found in E:\McNair\Projects\University Patents\university_pulled_from_assignee_list_USA -- is an output file&lt;br /&gt;
* Talked to Sonia, but didn't come to solid conclusion on identifying whether key words associate with city or country by running a python function&lt;br /&gt;
* Output sql tables from finished run of Jeemin_FDATrial_as_key_data_ripping.py &lt;br /&gt;
* Ran through assigneelist_USA.txt to see how many different ways UNIVERSITY could be spelled wrong. There were many.&lt;br /&gt;
* Tried to logic through creating a pattern that could catch all different versions of UNIVERSITY. Discuss further on whether UNIVERSITIES and those that include UNIVERSITIES but include  INC in the end should be pulled as relevant information&lt;br /&gt;
&lt;br /&gt;
2017-03-06:&lt;br /&gt;
* [[Installing python in a database]]&lt;br /&gt;
* Added building Python function section to [[Working with PostgreSQL]] at the bottom of the page.&lt;br /&gt;
* Ran FDA Trial data ripping again, as the text output files were wiped. &lt;br /&gt;
* Plan on discussing with Julia and Meghana again about pulling universities and other relevant institutions from the Assignee List USA. &lt;br /&gt;
* Talked to Sonia about pulling city, state, zipcode information, hence python was installed in a database. Will work with Sonia on Wednesday afternoon and see how best a regex function could be implemented&lt;br /&gt;
&lt;br /&gt;
2017-03-03:&lt;br /&gt;
* Attempted to output sql tables&lt;br /&gt;
&lt;br /&gt;
2017-03-01:&lt;br /&gt;
* Started re-running Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
&lt;br /&gt;
2017-02-27:&lt;br /&gt;
* Finished producing tables from Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
* Talked to Julia about LinkedIn data extracting - to be discussed further with Julia &amp;amp; Peter.&lt;br /&gt;
* Started web crawler for Wikipedia - currently pulls Endowment, Academic staff, students, undergraduates, and postgraduates info found on Rice Wikipedia page. Can be found in : E:\McNair\Projects\University Patents\Jeemin_University_wikipedia_crawler.py&lt;br /&gt;
&lt;br /&gt;
2017-02-24:&lt;br /&gt;
* Continued working on producing multiple tables - first two are done. Was working on location, as there are multiple location tags per location.&lt;br /&gt;
&lt;br /&gt;
2017-02-22:&lt;br /&gt;
* Finished Jeemin_FDATrial_as_key_data_ripping.py (E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py), which outputs to E:\McNair\Projects\FDA Trials\Jeemin_Project\general_data_ripping_output.txt; TODO: output four different tables &amp;amp; replace the write in the same for-loop as going through each file&lt;br /&gt;
&lt;br /&gt;
2017-02-20:&lt;br /&gt;
* Continued working on Jeemin_FDATrial_as_key_data_ripping.py to find tags and place all of those information in a list. The other zipcode file did not finish executing after 2+ hours of running it - considering the possibility of splitting the record file into smaller bits, or running the processing on a faster machine.&lt;br /&gt;
&lt;br /&gt;
2017-02-17:&lt;br /&gt;
* Completed code for counting the number of occurrences for each unique zipcode. (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_Running_File.py). It has been running for 20+min because of the comprehensive XML data files. Meanwhile started coding to create a dictionary with the keys corresponding to each unique trial ID, mapped to every other information (location, sponsors, phase, drugs ...etc.) (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py).&lt;br /&gt;
&lt;br /&gt;
2017-02-15:&lt;br /&gt;
* Discussed with Catherine what to do with FDA Trial data and decided to have a dictionary with zip-codes as keys and number of trials occurred in that zipcode as values. Was still attempting to loop through the files without the code having to exist in the same directory as the XML files. Plan to write to excel via tsv, with zip-code as one column and # of occurrence as the other.&lt;br /&gt;
&lt;br /&gt;
2017-02-13:&lt;br /&gt;
* Goals (for trials): 1) Build ER Diagram 2) For each entity, get XML snippet 3) Build a parser/ripper for single file; the python parser can be found at: E:\McNair\Projects\FDA Trials\Jeemin_Project&lt;br /&gt;
&lt;br /&gt;
2017-02-08:&lt;br /&gt;
* Attempted to come up with possible cases for locating the description of accelerators - pick up from extracting bodies of text from the about page (given that it exists)&lt;br /&gt;
* [[Trial Data Project]]&lt;br /&gt;
&lt;br /&gt;
2017-02-06:&lt;br /&gt;
* Set up wikiPage &amp;amp; remote desktop. &lt;br /&gt;
* Started working on python version of web crawler. So far it successfully prints out a catchphrase/ description for one website. To be worked on. The python file can be found in: E:\McNair\Projects\Accelerators\Python WebCrawler\webcrawlerpython.py&lt;br /&gt;
&lt;br /&gt;
[[Category:Work Log]]&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22294</id>
		<title>Jeemin Sim (Work Log)</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=Jeemin_Sim_(Work_Log)&amp;diff=22294"/>
		<updated>2017-12-05T16:47:10Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Jeemin Sim]] [[Work Logs]] [[Jeemin Sim (WorkLog)|(log page)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
&amp;lt;onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2017-12-05:&lt;br /&gt;
* Uploaded tables with KML files in TIF folder in bulk(E:) drive&lt;br /&gt;
** Allegheny County&lt;br /&gt;
** Atlanta&lt;br /&gt;
** Chicago&lt;br /&gt;
** Columbus, OH&lt;br /&gt;
** Dublin, OH&lt;br /&gt;
** Vermont&lt;br /&gt;
** Washington, D.C.&lt;br /&gt;
&lt;br /&gt;
*Updated documentation for: &lt;br /&gt;
http://mcnair.bakerinstitute.org/wiki/TIF_Project#Uploading_TIF_Data_onto_database_.28tigertest.29&lt;br /&gt;
&lt;br /&gt;
2017-12-04:&lt;br /&gt;
* To upload KML file into database with specified table name: &lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
* chicagotif table now resides in tigertest database&lt;br /&gt;
&lt;br /&gt;
2017-11-30:&lt;br /&gt;
* Displayed map with TIF districts and startups&lt;br /&gt;
* Location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\McNair_Color_Chicago_TIF_and_startups.png&lt;br /&gt;
* Added information and steps to ArcMap/ArcGIS documentation page&lt;br /&gt;
* Create a project page for 'Working with POSTGIS' and add instructions for uploading KML file onto POSTGIS&lt;br /&gt;
** Command used : &lt;br /&gt;
*** Logged in as : researcher@McNairDBServ&lt;br /&gt;
 /bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml &lt;br /&gt;
* chicago TIF kml file currently downloaded in tigertest with a table name of Layer0&lt;br /&gt;
** Figure out how to change layer name while loading kml file&lt;br /&gt;
** Instructions pulled from : http://wiki.wildsong.biz/index.php/Loading_data_into_PostGIS#Loading_data_from_KMZ_files&lt;br /&gt;
&lt;br /&gt;
2017-11-28:&lt;br /&gt;
* Created and edited [[ArcMap / ArcGIS Documentation]]&lt;br /&gt;
* Plotted points for TIFS and Startups in Chicago in one map.&lt;br /&gt;
** Location: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF\Jeemin_Chicago_TIF_and_Startups_Attempt1&lt;br /&gt;
* Used https://mygeodata.cloud/result to convert from KML file to CSV (which was then saved as txt file to be uploaded onto ArcMap)&lt;br /&gt;
* Text files located in Local Disk (C:) Drive&lt;br /&gt;
&lt;br /&gt;
2017-11-27:&lt;br /&gt;
*Download Chicago TIF data&lt;br /&gt;
&lt;br /&gt;
2017-11-13:&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
2017-11-09: &lt;br /&gt;
* Notes on data downloaded:&lt;br /&gt;
** Year 2010-2012 data are based on total population, not 25 yrs or over (case for all other tables)&lt;br /&gt;
*** Record appears five times total, with same exact column name&lt;br /&gt;
***For exmaple: 'Total; Estimate; High school graduate (includes equivalency)' appears five times, with different values.&lt;br /&gt;
* TODO:&lt;br /&gt;
** Make Projects page for ACS Data&lt;br /&gt;
***[[American Community Survey (ACS) Data]]&lt;br /&gt;
&lt;br /&gt;
2017-11-07:&lt;br /&gt;
*Yesterday, narrowed down columns of interest from ACS_S1501_educationattain_2016 table.&lt;br /&gt;
&lt;br /&gt;
 Id&lt;br /&gt;
 Id2&lt;br /&gt;
 Geography&lt;br /&gt;
 Total; Estimate; Population 25 years and over&lt;br /&gt;
 Total; Estimate; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - High school graduate (includes equivalency)&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Associate's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Associate's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Associate's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Bachelor's degree	&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Bachelor's degree&lt;br /&gt;
 Total; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Total; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Margin of Error; Population 25 years and over - Graduate or professional degree&lt;br /&gt;
 Percent; Estimate; Percent high school graduate or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent high school graduate or higher&lt;br /&gt;
 Percent; Estimate; Percent bachelor's degree or higher	&lt;br /&gt;
 Percent; Margin of Error; Percent bachelor's degree or higher&lt;br /&gt;
&lt;br /&gt;
*Complications:&lt;br /&gt;
**For csv files corresponding to years 2015 &amp;amp; 2016, all of the above columns exist.&lt;br /&gt;
**For csv files corresponding to years 2005 - 2014, no 'Percent' columns exist&lt;br /&gt;
*** Instead their 'Total' columns are percentage values&lt;br /&gt;
**For csv file corresponding to year 2005, columns regarding Graduate or professional degree are labeled differently.&lt;br /&gt;
**2012 data doesn't correspond to Population 25 years and over.&lt;br /&gt;
&lt;br /&gt;
*Temporary Solution:&lt;br /&gt;
**Since the above problems may be specific to this set of tables, will go through csv files and adjust columns.&lt;br /&gt;
&lt;br /&gt;
*Python script location:&lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\pullCertainColumns.py&lt;br /&gt;
&lt;br /&gt;
2017-10-31:&lt;br /&gt;
* Finished doanloading files from ACS.&lt;br /&gt;
* Started loading tables into tigertest.&lt;br /&gt;
* Commands run could be found in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data\DataLoading_SQL_Commands.txt&lt;br /&gt;
&lt;br /&gt;
2017-10-30:&lt;br /&gt;
* Downloaded data from ACS, to be continued&lt;br /&gt;
* File path: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\ACS_Downloaded_Data&lt;br /&gt;
* Fields of interest: &lt;br /&gt;
 S1401 SCHOOL ENROLLMENT&lt;br /&gt;
 S1501 EDUCATIONAL ATTAINMENT&lt;br /&gt;
 S2301 EMPLOYMENT STATUS&lt;br /&gt;
 B01003 TOTAL POPULATION&lt;br /&gt;
 B02001 RACE&lt;br /&gt;
 B07201 GEOGRAPHICAL MOBILITY&lt;br /&gt;
 B08303 TRAVEL TIME TO WORK&lt;br /&gt;
 B19013 MEDIAN HOUSEHOLD INCOME&lt;br /&gt;
 B19053 SELF-EMPLOYMENT INCOME IN THE PAST 12 MONTHS FOR HOUSEHOLDS&lt;br /&gt;
 B19083 GINI INDEX OF INCOME INEQUALITY&lt;br /&gt;
 B25003 TENURE&lt;br /&gt;
 B25105 MEDIAN MONTHLY HOUSING COSTS&lt;br /&gt;
 B28011 INTERNET SUBSCRIPTIONS IN HOUSEHOLD&lt;br /&gt;
 G001 GEOGRAPHIC IDENTIFIERS&lt;br /&gt;
&lt;br /&gt;
2017-10-23:&lt;br /&gt;
* Talked to Ed with Peter &amp;amp; Oliver about upcoming tasks &amp;amp; projects.&lt;br /&gt;
* Loaded acs_place table 2017 (does not contain population) on tigertest.&lt;br /&gt;
** SQL commands used:&lt;br /&gt;
&lt;br /&gt;
 DROP TABLE acs_place;&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE acs_place (&lt;br /&gt;
        USPS varchar(5),&lt;br /&gt;
        GEOID  varchar(30),&lt;br /&gt;
        ANSICODE varchar(30),&lt;br /&gt;
        NAME varchar(100),&lt;br /&gt;
        LSAD varchar(30),&lt;br /&gt;
        FUNCSTAT varchar(10),&lt;br /&gt;
        ALAND varchar(30),&lt;br /&gt;
        AWATER varchar(30),&lt;br /&gt;
        ALAND_SQMI varchar(30),&lt;br /&gt;
        AWATER_SQMI varchar(30),&lt;br /&gt;
        INTPTLAT varchar(30),&lt;br /&gt;
        INTPTLONG varchar(30)&lt;br /&gt;
 );&lt;br /&gt;
&lt;br /&gt;
 \COPY acs_place FROM '/bulk/2017_Gaz_place_national.txt';&lt;br /&gt;
 --COPY 29578&lt;br /&gt;
&lt;br /&gt;
* TODO:&lt;br /&gt;
** Find acs place 2016 data for population&lt;br /&gt;
** Find larger acs files, ideally at the place level&lt;br /&gt;
** Provide more documentation on POSTGIS &amp;amp; geocoding&lt;br /&gt;
&lt;br /&gt;
2017-10-16:&lt;br /&gt;
* Exported maps of points from the Bay Area each year. &lt;br /&gt;
** Map used location: E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year\BayAreaEveryYearMap&lt;br /&gt;
** Zoom scale: 1:650.000&lt;br /&gt;
* Location of Bay Area Points png files: &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS\Jeemin_Bay_Area Points_Every_Year&lt;br /&gt;
&lt;br /&gt;
2017-10-10:&lt;br /&gt;
*Discoveries/ Struggles regarding.gdb to .shp file conversion:&lt;br /&gt;
** Esri Production Mapping (costly)&lt;br /&gt;
*** License needs to be purchasesd: http://www.esri.com/software/arcgis/extensions/production-mapping/pricing&lt;br /&gt;
** Use ogr2ogr from gdal package&lt;br /&gt;
*** https://gis.stackexchange.com/questions/14432/migrating-geodatabase-data-into-postgis-without-esri-apps&lt;br /&gt;
*** Command: ogr2ogr -f &amp;quot;ESRI Shapefile&amp;quot; [Destination of shapefile] [path to gdb file]&lt;br /&gt;
*** Problem installing gdal&lt;br /&gt;
&lt;br /&gt;
2017-10-09:&lt;br /&gt;
* TODO'S:&lt;br /&gt;
** Downloading data onto tigertest&lt;br /&gt;
*** Road&lt;br /&gt;
*** Railway&lt;br /&gt;
*** Coastline&lt;br /&gt;
*** Instructions: http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Bulk_Download_TIGER_Shapefiles&lt;br /&gt;
** Configure census data from American Community Survey (ACS)&lt;br /&gt;
*** 1) Work out what data is of our interest (confirm ACS)&lt;br /&gt;
*** 2) Determine appropriate shape file unit: &lt;br /&gt;
**** census block vs. census block group vs. census track&lt;br /&gt;
*** 3) Load into tigertest&lt;br /&gt;
&lt;br /&gt;
* Done:&lt;br /&gt;
** Downloaded data from https://www.census.gov/cgi-bin/geo/shapefiles/index.php&lt;br /&gt;
  tl_2017_us_coastline -- 4209&lt;br /&gt;
  tl_2017_us_primaryroads -- 11574 &lt;br /&gt;
  tl_2017_us_rails -- 176237&lt;br /&gt;
** Link found to potentially download ACS data: https://www.census.gov/geo/maps-data/data/tiger-data.html&lt;br /&gt;
*** But most files on it come with .gdb extension and not .shp&lt;br /&gt;
&lt;br /&gt;
2017-10-03:&lt;br /&gt;
* Installed PostGIS &amp;amp; is now visible on pgAdmin III&lt;br /&gt;
&lt;br /&gt;
* ArcGIS (connect to postgis database):&lt;br /&gt;
** 1) Open ArcMap&lt;br /&gt;
** 2) Either open blank or open existing file/project&lt;br /&gt;
** 3) Click on 'Add Data' button with a cross and a yellow diamond (under Selection toolbar)&lt;br /&gt;
** 4) Go to the top-most directory by pressing on the arrow that points left-then-up (on the left of home button)&lt;br /&gt;
** 5) Click on 'Database Connections'&lt;br /&gt;
** 6) Click on 'Add Database Connection' (if Connection to localhost.sde) does not exist already)&lt;br /&gt;
** 7) Fill in the following fields:&lt;br /&gt;
*** Database Platform: PostgreSQL&lt;br /&gt;
*** Instance: localhost&lt;br /&gt;
*** User name: postgres&lt;br /&gt;
*** Password: &lt;br /&gt;
*** Database: tigertest&lt;br /&gt;
** 8) Press 'OK'&lt;br /&gt;
** 9) Now you'll have 'Connection to localhost.sde' in your Database Connections&lt;br /&gt;
** 10) Double click on 'Connection to localhost.sde'&lt;br /&gt;
** 11) Double click on the table of interest&lt;br /&gt;
** 12) Click 'Finish'&lt;br /&gt;
** 13) You'll see information populated on map, as one of the 'Layers'&lt;br /&gt;
*** Tested with: tigertest.public.copointplacescontains&lt;br /&gt;
&lt;br /&gt;
* On running &amp;amp; altering Oliver's script: &lt;br /&gt;
** Location: E:\McNair\Projects\OliverLovesCircles\src\python\vc_circles.py&lt;br /&gt;
** Ed manipulated file names so that underscores would replace dots (St.Louis --&amp;gt; St_Louis)&lt;br /&gt;
** Takes in instances and sweep times as part of the argument, but not impactful as those variables are hardcoded in the script&lt;br /&gt;
** Ran vc_circles.py with the following variables with changed values:&lt;br /&gt;
*** SWEEP_CYCLE_SECONDS = 10 (used to be 30)&lt;br /&gt;
*** NUMBER_INSTANCES = 16 (used to be 8)&lt;br /&gt;
** New output to be found in: E:\McNair\Projects\OliverLovesCircles\out&lt;br /&gt;
&lt;br /&gt;
2017-10-02:&lt;br /&gt;
* Talked to Harrison &amp;amp; Peter regarding ArcGIS&lt;br /&gt;
** Currently have points plotted on Houston&lt;br /&gt;
** Trouble interpreting geometry type, as currently reads in from text file&lt;br /&gt;
** Documents located in : E:\McNair\Projects\Agglomeration\HarrisonPeterWorkArcGIS&lt;br /&gt;
* Attempted to install PostGIS spatial extention from PostgreSQL but getting 'spatial database creation failed' error message.&lt;br /&gt;
** Referenced instructions: &lt;br /&gt;
*** https://www.gpsfiledepot.com/tutorials/installing-and-setting-up-postgresql-with-postgis/&lt;br /&gt;
*** http://www.bostongis.com/PrinterFriendly.aspx?content_name=postgis_tut01&lt;br /&gt;
&lt;br /&gt;
2017-09-26:&lt;br /&gt;
* Created a table that maps a state to the database name.&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation#Translating_Table_names_to_corresponding_States&lt;br /&gt;
* Added more GIS-information (functions, realm &amp;amp; outliers to consider)&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration#GIS_Resources&lt;br /&gt;
* Visualization in PostGIS or connecting to ArcGIS for visualization (import/export data)&lt;br /&gt;
* Spatial indexing:&lt;br /&gt;
** http://revenant.ca/www/postgis/workshop/indexing.html&lt;br /&gt;
&lt;br /&gt;
2017-09-25:&lt;br /&gt;
* Talked to Ed about GIS, Census data, and going about determining the correctness of reported 'place.' Currently script makes a cross product of each reported place and an existing place, outputting a column of boolean value to indicate whether the reported place's coordinates fell within a place's geometric boundaries. One other way of going about this which we discussed is to first check if the reported place does fall within that place's boundaries. If it isn't, we'll go about the cross product method.&lt;br /&gt;
&lt;br /&gt;
* To add documentation : &lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/PostGIS_Installation&lt;br /&gt;
** http://mcnair.bakerinstitute.org/wiki/Urban_Start-up_Agglomeration&lt;br /&gt;
&lt;br /&gt;
* Discussed the need to maintain venture capital database.&lt;br /&gt;
&lt;br /&gt;
*Relevant File paths:&lt;br /&gt;
**E:\McNair\Projects\Agglomeration\TestGIS.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\ProecssingCoLevelSimple.sql&lt;br /&gt;
**Z:\VentureCapitalData\SDCVCData\vcdb2\CitiesWithGT10Active.txt&lt;br /&gt;
&lt;br /&gt;
2017-09-21:&lt;br /&gt;
* Functions for Linear Referencing:&lt;br /&gt;
 '''ST_LineInterpolatePoint(geometry A, double measure)''': Returns a point interpolated along a line.&lt;br /&gt;
 '''ST_LineLocatePoint(geometry A, geometry B)''': Returns a float between 0 and 1 representing the location of the closest point on LineString to the given Point.&lt;br /&gt;
 '''ST_Line_Substring(geometry A, double from, double to)''': Return a linestring being a substring of the input one starting and ending at the given fractions of total 2d length.&lt;br /&gt;
 '''ST_Locate_Along_Measure(geometry A, double measure)''': Return a derived geometry collection value with elements that match the specified measure.&lt;br /&gt;
 '''ST_Locate_Between_Measures(geometry A, double from, double to)''': Return a derived geometry collection value with elements that match the specified range of measures inclusively.&lt;br /&gt;
 '''ST_AddMeasure(geometry A, double from, double to)''': Return a derived geometry with measure elements linearly interpolated between the start and end points. If the geometry has no measure dimension, one is added.&lt;br /&gt;
&lt;br /&gt;
*3-D Functions:&lt;br /&gt;
 '''ST_3DClosestPoint''' — Returns the 3-dimensional point on g1 that is closest to g2. This is the first point of the 3D shortest line.&lt;br /&gt;
 '''ST_3DDistance''' — For geometry type Returns the 3-dimensional cartesian minimum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DDWithin''' — For 3d (z) geometry type Returns true if two geometries 3d distance is within number of units.&lt;br /&gt;
 '''ST_3DDFullyWithin''' — Returns true if all of the 3D geometries are within the specified distance of one another.&lt;br /&gt;
 '''ST_3DIntersects''' — Returns TRUE if the Geometries “spatially intersect” in 3d - only for points and linestrings&lt;br /&gt;
 '''ST_3DLongestLine''' — Returns the 3-dimensional longest line between two geometries&lt;br /&gt;
 '''ST_3DMaxDistance''' — For geometry type Returns the 3-dimensional cartesian maximum distance (based on spatial ref) between two geometries in projected units.&lt;br /&gt;
 '''ST_3DShortestLine''' — Returns the 3-dimensional shortest line between two geometries&lt;br /&gt;
&lt;br /&gt;
*Relevant PostgreSQL Commands:&lt;br /&gt;
 '''\dt *.*''' Show all tables&lt;br /&gt;
 '''\q''' Exit table&lt;br /&gt;
&lt;br /&gt;
*Specifities/ Outliers to consider:&lt;br /&gt;
 New York (decompose)&lt;br /&gt;
 Princeton area (keep Princeton  unique)&lt;br /&gt;
 Reston, Virginia (keep)&lt;br /&gt;
 San Diego (include La Jolla)&lt;br /&gt;
 Silicon Valley (all distinct)&lt;br /&gt;
&lt;br /&gt;
* Continue reading from: https://postgis.net/docs/postgis_installation.html&lt;br /&gt;
&lt;br /&gt;
2017-09-20:&lt;br /&gt;
* Attended first intro to GIS course yesterday&lt;br /&gt;
* Updated above notes on GIS&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-19:&lt;br /&gt;
* Useful functions for spatial joins:&lt;br /&gt;
&lt;br /&gt;
 '''sum(expression)''': aggregate to return a sum for a set of records&lt;br /&gt;
 '''count(expression)''': aggregate to return the size of a set of records&lt;br /&gt;
 '''ST_Area(geometry)''' returns the area of the polygons&lt;br /&gt;
 '''ST_AsText(geometry)''' returns WKT text&lt;br /&gt;
 '''ST_Buffer(geometry, distance)''': For geometry: Returns a geometry that represents all points whose distance from this Geometry is less than or equal to distance. Calculations are in the Spatial Reference System of this Geometry. For geography: Uses a planar transform wrapper.&lt;br /&gt;
 '''ST_Contains(geometry A, geometry B)''' returns the true if geometry A contains geometry B&lt;br /&gt;
 '''ST_Distance(geometry A, geometry B)''' returns the minimum distance between geometry A and geometry B&lt;br /&gt;
 '''ST_DWithin(geometry A, geometry B, radius)''' returns the true if geometry A is radius distance or less from geometry B&lt;br /&gt;
 '''ST_GeomFromText(text)''' returns geometry&lt;br /&gt;
 '''ST_Intersection(geometry A, geometry B)''': Returns a geometry that represents the shared portion of geomA and geomB. The geography implementation does a transform to geometry to do the intersection and then transform back to WGS84&lt;br /&gt;
 '''ST_Intersects(geometry A, geometry B)''' returns the true if geometry A intersects geometry B&lt;br /&gt;
 '''ST_Length(linestring)''' returns the length of the linestring&lt;br /&gt;
 '''ST_Touches(geometry A, geometry B)''' returns the true if the boundary of geometry A touches geometry B&lt;br /&gt;
 '''ST_Within(geometry A, geometry B)''' returns the true if geometry A is within geometry B&lt;br /&gt;
 geometry_a '''&amp;amp;&amp;amp;''' geometry_b: Returns TRUE if A’s bounding box overlaps B’s.&lt;br /&gt;
 geometry_a '''=''' geometry_b: Returns TRUE if A’s bounding box is the same as B’s.&lt;br /&gt;
 '''ST_SetSRID(geometry, srid)''': Sets the SRID on a geometry to a particular integer value.&lt;br /&gt;
 '''ST_SRID(geometry)''': Returns the spatial reference identifier for the ST_Geometry as defined in spatial_ref_sys table.&lt;br /&gt;
 '''ST_Transform(geometry, srid)''': Returns a new geometry with its coordinates transformed to the SRID referenced by the integer parameter.&lt;br /&gt;
 '''ST_Union()''': Returns a geometry that represents the point set union of the Geometries.&lt;br /&gt;
 '''substring(string [from int] [for int])''': PostgreSQL string function to extract substring matching SQL regular expression.&lt;br /&gt;
 '''ST_Relate(geometry A, geometry B)''': Returns a text string representing the DE9IM relationship between the geometries.&lt;br /&gt;
 '''ST_GeoHash(geometry A)''': Returns a text string representing the GeoHash of the bounds of the object.&lt;br /&gt;
&lt;br /&gt;
*Native functions for geogrphy:&lt;br /&gt;
 '''ST_AsText(geography)''' returns text&lt;br /&gt;
 '''ST_GeographyFromText(text)''' returns geography&lt;br /&gt;
 '''ST_AsBinary(geography)''' returns bytea&lt;br /&gt;
 '''ST_GeogFromWKB(bytea)''' returns geography&lt;br /&gt;
 '''ST_AsSVG(geography)''' returns text&lt;br /&gt;
 '''ST_AsGML(geography)''' returns text&lt;br /&gt;
 '''ST_AsKML(geography)''' returns text&lt;br /&gt;
 '''ST_AsGeoJson(geography)''' returns text&lt;br /&gt;
 '''ST_Distance(geography, geography)''' returns double&lt;br /&gt;
 '''ST_DWithin(geography, geography, float8)''' returns boolean&lt;br /&gt;
 '''ST_Area(geography)''' returns double&lt;br /&gt;
 '''ST_Length(geography)''' returns double&lt;br /&gt;
 '''ST_Covers(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_CoveredBy(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Intersects(geography, geography)''' returns boolean&lt;br /&gt;
 '''ST_Buffer(geography, float8)''' returns geography [1]&lt;br /&gt;
 '''ST_Intersection(geography, geography)''' returns geography [1]&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/geography.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2017-09-18:&lt;br /&gt;
* Read documentation on PostGIS and tiger geocoder&lt;br /&gt;
* Continue reading from: http://workshops.boundlessgeo.com/postgis-intro/joins.html&lt;br /&gt;
&lt;br /&gt;
2017-09-12:&lt;br /&gt;
* Clarified University Matching output file.&lt;br /&gt;
* Helped Christy with pdf-reader, capturing keywords in readable format.&lt;br /&gt;
&lt;br /&gt;
2017-09-11:&lt;br /&gt;
* Ensured that documentation exists for the projects worked on last semester.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/onlyinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
&lt;br /&gt;
2017-04-17:&lt;br /&gt;
* To pull accelerators: Wrote simple python regex-based script that ran on organizations data.&lt;br /&gt;
 Code: E:\McNair\Projects\Accelerators\Crunchbase Snapshot\accelerator keywords.py&lt;br /&gt;
 Matched output (885 mathces) : E:\McNair\Projects\Accelerators\Crunchbase Snapshot\Jeemin_885_accel_matches&lt;br /&gt;
&lt;br /&gt;
2017-04-14:&lt;br /&gt;
* Loaded Federal Grants Data into database&lt;br /&gt;
&lt;br /&gt;
2017-04-12:&lt;br /&gt;
* Finishing up cleaning the columns for Federal Grant Data - NIH. The output excel files can be accessed at:&lt;br /&gt;
 E:\McNair\Projects\Federal Grant Data\NIH\Grants &lt;br /&gt;
 Titled:&lt;br /&gt;
     Jeemin_combined_files 1986-2001.csv&lt;br /&gt;
     Jeemin_combined_files 2002-2012.csv&lt;br /&gt;
     Jeemin_combined_files 2013-2015.csv&lt;br /&gt;
&lt;br /&gt;
* psql table formula:&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE all_grants (&lt;br /&gt;
  APPLICATION_ID integer,&lt;br /&gt;
  ACTIVITY varchar(3),&lt;br /&gt;
  ADMINISTERING_IC varchar(2),&lt;br /&gt;
  APPLICATION_TYPE varchar(1),&lt;br /&gt;
  ARRA_FUNDED varchar(1),&lt;br /&gt;
  AWARD_NOTICE_DATE date, &lt;br /&gt;
  BUDGET_START date,&lt;br /&gt;
  BUDGET_END date, &lt;br /&gt;
  CFDA_CODE varchar(3), &lt;br /&gt;
  CORE_PROJECT_NUM varchar(11),&lt;br /&gt;
  ED_INST_TYPE varchar(30), &lt;br /&gt;
  FOA_NUMBER varchar(13),&lt;br /&gt;
  FULL_PROJECT_NUM varchar(35),&lt;br /&gt;
  FUNDING_ICs varchar(40),&lt;br /&gt;
  FUNDING_MECHANISM varchar(23),&lt;br /&gt;
  FY smallint, &lt;br /&gt;
  IC_NAME varchar(77), &lt;br /&gt;
  NIH_SPENDING_CATS varchar(295), &lt;br /&gt;
  ORG_CITY varchar(20),&lt;br /&gt;
  ORG_COUNTRY varchar(16),&lt;br /&gt;
  ORG_DEPT varchar(30),&lt;br /&gt;
  ORG_DISTRICT smallint, &lt;br /&gt;
  ORG_DUNS integer,&lt;br /&gt;
  ORG_FIPS varchar(2), &lt;br /&gt;
  ORG_NAME varchar(60), &lt;br /&gt;
  ORG_STATE varchar(2), &lt;br /&gt;
  ORG_ZIPCODE integer, &lt;br /&gt;
  PHR varchar(200), &lt;br /&gt;
  PI_IDS varchar(30), &lt;br /&gt;
  PI_NAMEs varchar(200), &lt;br /&gt;
  PROGRAM_OFFICER_NAME varchar(36), &lt;br /&gt;
  PROJECT_START date, &lt;br /&gt;
  PROJECT_END date, &lt;br /&gt;
  PROJECT_TERMS varchar(200), &lt;br /&gt;
  PROJECT_TITLE varchar(244), &lt;br /&gt;
  SERIAL_NUMBER smallint,&lt;br /&gt;
  STUDY_SECTION varchar(4), &lt;br /&gt;
  STUDY_SECTION_NAME varchar(100), &lt;br /&gt;
  SUBPROJECT_ID smallint, &lt;br /&gt;
  SUFFIX varchar(2),&lt;br /&gt;
  SUPPORT_YEAR smallint, &lt;br /&gt;
  DIRECT_COST_AMT integer, &lt;br /&gt;
  INDIRECT_COST_AMT integer, &lt;br /&gt;
  TOTAL_COST integer, &lt;br /&gt;
  TOTAL_COST_SUB_PROJECT integer&lt;br /&gt;
 );&lt;br /&gt;
 \COPY all_grants FROM 'Jeemin_combined_files 1986-2001.csv' WITH DELIMITER AS E'\t' HEADER NULL AS ''CSV&lt;br /&gt;
&lt;br /&gt;
2017-03-29:&lt;br /&gt;
* Troubled by the variety of cases - separating keys by keywords will not work favorably when it hits University of California vs. University of Southern California case - find a way to match University of Southern California first (more specific ones first) - but how to generalize&lt;br /&gt;
&lt;br /&gt;
2017-03-27:&lt;br /&gt;
* Writing code for university matches - decided to go through keys instead of each dataitem. Use keywords in each key to go through the dataitem - misspellings are currently unaccounted for.&lt;br /&gt;
&lt;br /&gt;
2017-03-24:&lt;br /&gt;
* Discussed with Julia &amp;amp; Meghana about university keys to use to count # of occurrences, including aliases and misspellings&lt;br /&gt;
* Thoughts: to use a scoring metric with a key of UNIVERSITY OF CALIFORNIA SYSTEM, it should have a 'better' score when compared to MATHEMATICAL SCIENCES PUBLISHERS C/O UNIVERSITY OF CALIFORNIA BERKELEY or CALIFORNIA AT LOS ANGELES, UNVIERSITY OF than when compared to UNIVERSITY OF SOUTHERN CALIFORNIA, which may pose a challenge when attempting to implement this in a more general sense. In normalizing a string, strip &amp;quot;THE&amp;quot;, &amp;quot;,&amp;quot; and split words by spaces and compare each keyword from the two strings. Deciding on which strings to compare will be another issue - length (within some range maybe) could be an option. &lt;br /&gt;
* Federal Grant Data XML Parser was rerun - same output textfiles&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Read string matching &amp;amp; calculating distance, below are relevant links&lt;br /&gt;
* [http://www.cs.cmu.edu/~wcohen/postscript/ijcai-ws-2003.pdf]&lt;br /&gt;
* [http://web.archive.org/web/20081224234350/http://www.dcs.shef.ac.uk/~sam/stringmetrics.html]&lt;br /&gt;
&lt;br /&gt;
2017-03-22:&lt;br /&gt;
* Talked to Julia about universal matcher, want to combine all University of California's to University of California, The Regents of&lt;br /&gt;
* Converted crunchbase2013 data from mySQL to PostgreSQL, but having trouble with the last table - cb_relationships, complains about syntax error at or near some places - but generally all tables exist in database called crunchbase&lt;br /&gt;
* Federal Grant Data XML Parser was run - the three output textfiles can be found in E:\McNair\Projects\Federal Grant Data\NSF&lt;br /&gt;
&lt;br /&gt;
2017-03-16:&lt;br /&gt;
* Further documented [[University Patent Matching]]&lt;br /&gt;
* Finished writing XML Parser&lt;br /&gt;
&lt;br /&gt;
2017-03-15:&lt;br /&gt;
* Todo: write a wikipage on possible input/output info on string matcher&lt;br /&gt;
* Wrote part of XML parser, extracted yearly data into E:\McNair\Projects\Federal Grant Data\NSF\NSF Extracted Data (up to year 2010)&lt;br /&gt;
&lt;br /&gt;
2017-03-14:&lt;br /&gt;
* Started pulling academy cases but there are too many cases to worry about, in terms of institution of interest. A document is located in E:\McNair\Projects\University Patents\academies_verify_cases.txt&lt;br /&gt;
* Need Julia/Meghana to look through the hits and see which are relevant &amp;amp; extract pattern from there. &lt;br /&gt;
* Having trouble outputting txt file without double quotes around every line. &lt;br /&gt;
* Thinking that one text file should be output for all keywords instead of having one each, to avoid overlap (ex) COLLEGE and UNIVERSITY are both keywords; ALBERT EINSTEIN COLLEGE OF YESHIVA UNIVERSITY will be hit twice if it were counted as two separate instances, one accounting for COLLEGE and the other for UNIVERSITY) - either in the form of if-elseif statements or one big regex check.&lt;br /&gt;
&lt;br /&gt;
2017-03-13:&lt;br /&gt;
* For University Patent Data Matching - matched SCHOOL (output: E:\McNair\Projects\University Patents\school_pulled_from_assignee_list_USA) and matched INSTITUTE(output: E:\McNair\Projects\University Patents\institute_pulled_from_assignee_list_USA). &lt;br /&gt;
* [[University Patent Matching]] &lt;br /&gt;
* To be worked on later: Grant XML parsing &amp;amp; general name matcher&lt;br /&gt;
&lt;br /&gt;
2017-03-08:&lt;br /&gt;
* Wrote regex pattern that identifies all &amp;quot;university&amp;quot; matchings - can be found in E:\McNair\Projects\University Patents\university_pulled_from_assignee_list_USA -- is an output file&lt;br /&gt;
* Talked to Sonia, but didn't come to solid conclusion on identifying whether key words associate with city or country by running a python function&lt;br /&gt;
* Output sql tables from finished run of Jeemin_FDATrial_as_key_data_ripping.py &lt;br /&gt;
* Ran through assigneelist_USA.txt to see how many different ways UNIVERSITY could be spelled wrong. There were many.&lt;br /&gt;
* Tried to logic through creating a pattern that could catch all different versions of UNIVERSITY. Discuss further on whether UNIVERSITIES and those that include UNIVERSITIES but include  INC in the end should be pulled as relevant information&lt;br /&gt;
&lt;br /&gt;
2017-03-06:&lt;br /&gt;
* [[Installing python in a database]]&lt;br /&gt;
* Added building Python function section to [[Working with PostgreSQL]] at the bottom of the page.&lt;br /&gt;
* Ran FDA Trial data ripping again, as the text output files were wiped. &lt;br /&gt;
* Plan on discussing with Julia and Meghana again about pulling universities and other relevant institutions from the Assignee List USA. &lt;br /&gt;
* Talked to Sonia about pulling city, state, zipcode information, hence python was installed in a database. Will work with Sonia on Wednesday afternoon and see how best a regex function could be implemented&lt;br /&gt;
&lt;br /&gt;
2017-03-03:&lt;br /&gt;
* Attempted to output sql tables&lt;br /&gt;
&lt;br /&gt;
2017-03-01:&lt;br /&gt;
* Started re-running Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
&lt;br /&gt;
2017-02-27:&lt;br /&gt;
* Finished producing tables from Jeemin_FDATrial_as_key_data_ripping.py&lt;br /&gt;
* Talked to Julia about LinkedIn data extracting - to be discussed further with Julia &amp;amp; Peter.&lt;br /&gt;
* Started web crawler for Wikipedia - currently pulls Endowment, Academic staff, students, undergraduates, and postgraduates info found on Rice Wikipedia page. Can be found in : E:\McNair\Projects\University Patents\Jeemin_University_wikipedia_crawler.py&lt;br /&gt;
&lt;br /&gt;
2017-02-24:&lt;br /&gt;
* Continued working on producing multiple tables - first two are done. Was working on location, as there are multiple location tags per location.&lt;br /&gt;
&lt;br /&gt;
2017-02-22:&lt;br /&gt;
* Finished Jeemin_FDATrial_as_key_data_ripping.py (E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py), which outputs to E:\McNair\Projects\FDA Trials\Jeemin_Project\general_data_ripping_output.txt; TODO: output four different tables &amp;amp; replace the write in the same for-loop as going through each file&lt;br /&gt;
&lt;br /&gt;
2017-02-20:&lt;br /&gt;
* Continued working on Jeemin_FDATrial_as_key_data_ripping.py to find tags and place all of those information in a list. The other zipcode file did not finish executing after 2+ hours of running it - considering the possibility of splitting the record file into smaller bits, or running the processing on a faster machine.&lt;br /&gt;
&lt;br /&gt;
2017-02-17:&lt;br /&gt;
* Completed code for counting the number of occurrences for each unique zipcode. (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_Running_File.py). It has been running for 20+min because of the comprehensive XML data files. Meanwhile started coding to create a dictionary with the keys corresponding to each unique trial ID, mapped to every other information (location, sponsors, phase, drugs ...etc.) (currently titled &amp;amp; located: E:\McNair\Projects\FDA Trials\Jeemin_Project\Jeemin_FDATrial_as_key_data_ripping.py).&lt;br /&gt;
&lt;br /&gt;
2017-02-15:&lt;br /&gt;
* Discussed with Catherine what to do with FDA Trial data and decided to have a dictionary with zip-codes as keys and number of trials occurred in that zipcode as values. Was still attempting to loop through the files without the code having to exist in the same directory as the XML files. Plan to write to excel via tsv, with zip-code as one column and # of occurrence as the other.&lt;br /&gt;
&lt;br /&gt;
2017-02-13:&lt;br /&gt;
* Goals (for trials): 1) Build ER Diagram 2) For each entity, get XML snippet 3) Build a parser/ripper for single file; the python parser can be found at: E:\McNair\Projects\FDA Trials\Jeemin_Project&lt;br /&gt;
&lt;br /&gt;
2017-02-08:&lt;br /&gt;
* Attempted to come up with possible cases for locating the description of accelerators - pick up from extracting bodies of text from the about page (given that it exists)&lt;br /&gt;
* [[Trial Data Project]]&lt;br /&gt;
&lt;br /&gt;
2017-02-06:&lt;br /&gt;
* Set up wikiPage &amp;amp; remote desktop. &lt;br /&gt;
* Started working on python version of web crawler. So far it successfully prints out a catchphrase/ description for one website. To be worked on. The python file can be found in: E:\McNair\Projects\Accelerators\Python WebCrawler\webcrawlerpython.py&lt;br /&gt;
&lt;br /&gt;
[[Category:Work Log]]&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22293</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22293"/>
		<updated>2017-12-05T16:44:06Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Vermont */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a tale ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('vermonttif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid_1    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 status        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tif           | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 acresotv      | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 parcels       | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 edtaxablev    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 munitaxabl    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 contactnam    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttit    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contacttel    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 contactema    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateconta    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetitle    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 statetelep    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 stateemail    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 datelastup    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                             | plain    |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22292</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22292"/>
		<updated>2017-12-05T16:43:27Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Dublin, OH */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a tale ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
    Column     |           Type           | Collation | Nullable |                  Default                   | Storage  | Stats target | Description &lt;br /&gt;
 --------------+--------------------------+-----------+----------+--------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid       | integer                  |           | not null | nextval('dublintif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry  | geometry(Geometry,4326)  |           |          |                                            | main     |              | &lt;br /&gt;
 name          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 description   | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 timestamp     | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 begin         | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 end           | timestamp with time zone |           |          |                                            | plain    |              | &lt;br /&gt;
 altitudemode  | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tessellate    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 extrude       | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 visibility    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 draworder     | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 icon          | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 objectid      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_id        | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 tif_name      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 tif_type      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_date      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_num       | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod1      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod2      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 ord_mod3      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_st     | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pr_imp_val    | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 pub_imp_st    | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 pub_imp_val   | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 num_jobs      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 exp_date      | integer                  |           |          |                                            | plain    |              | &lt;br /&gt;
 globalid      | character varying        |           |          |                                            | extended |              | &lt;br /&gt;
 shapestarea   | double precision         |           |          |                                            | plain    |              | &lt;br /&gt;
 shapestlength | double precision         |           |          |                                            | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22291</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22291"/>
		<updated>2017-12-05T16:42:33Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Uploading TIF Data onto database (tigertest) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== To view all columns of a tale ==&lt;br /&gt;
&lt;br /&gt;
 \d+ &amp;lt;tablename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22290</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22290"/>
		<updated>2017-12-05T16:41:52Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Washington, D.C. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                Default                 | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('dctif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                        | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                        | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                        | plain    |              | &lt;br /&gt;
 url          | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 dc_code      | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 gis_id       | character varying        |           |          |                                        | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                        | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                        | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22289</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22289"/>
		<updated>2017-12-05T16:41:11Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Columbus, OH */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
     Column     |           Type           | Collation | Nullable |                   Default                    | Storage  | Stats target | Description &lt;br /&gt;
 ---------------+--------------------------+-----------+----------+----------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid        | integer                  |           | not null | nextval('columbustif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry   | geometry(Geometry,4326)  |           |          |                                              | main     |              | &lt;br /&gt;
 name           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 description    | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 timestamp      | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 begin          | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 end            | timestamp with time zone |           |          |                                              | plain    |              | &lt;br /&gt;
 altitudemode   | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 tessellate     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 extrude        | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 visibility     | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 draworder      | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 icon           | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 objectid       | integer                  |           |          |                                              | plain    |              | &lt;br /&gt;
 fund_no        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 orc            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 ordinance      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 passage        | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 agreement      | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 dte_status     | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 acres          | double precision         |           |          |                                              | plain    |              | &lt;br /&gt;
 url            | character varying        |           |          |                                              | extended |              | &lt;br /&gt;
 last_edit_date | character varying        |           |          |                                              | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22288</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22288"/>
		<updated>2017-12-05T16:40:31Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Atlanta */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('atlantatif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 id           | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 area         | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 tad_name     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 start_       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 status       | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_length | double precision         |           |          |                                             | plain    |              | &lt;br /&gt;
 shape_area   | double precision         |           |          |                                             | plain    |              |&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22287</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22287"/>
		<updated>2017-12-05T16:39:59Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Uploading KML file into a table in database (tigertest) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Command to upload KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22286</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22286"/>
		<updated>2017-12-05T16:39:37Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Uploading KML file */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Uploading KML file into a table in database (tigertest) ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22285</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22285"/>
		<updated>2017-12-05T16:39:12Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Allegheny County, PA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Uploading KML file ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 ----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22284</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22284"/>
		<updated>2017-12-05T16:38:42Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Allegheny County, PA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Uploading KML file ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
     Column      |           Type           | Collation | Nullable |                       Default                       | Storage  | Stats target | Description &lt;br /&gt;
 -----------------+--------------------------+-----------+----------+-----------------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid         | integer                  |           | not null | nextval('alleghenycountytif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry    | geometry(Geometry,4326)  |           |          |                                                     | main     |              | &lt;br /&gt;
 name            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 description     | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 timestamp       | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 begin           | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 end             | timestamp with time zone |           |          |                                                     | plain    |              | &lt;br /&gt;
 altitudemode    | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 tessellate      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 extrude         | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 visibility      | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 draworder       | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 icon            | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 objectid        | integer                  |           |          |                                                     | plain    |              | &lt;br /&gt;
 terminationdate | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 effectivedate   | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 sponsor         | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 active          | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified        | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 notes           | character varying        |           |          |                                                     | extended |              | &lt;br /&gt;
 verified_date   | character varying        |           |          |                                                     | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22283</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22283"/>
		<updated>2017-12-05T16:37:10Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Cities &amp;amp; Tables */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Uploading KML file ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;br /&gt;
&lt;br /&gt;
=== Allegheny County, PA ===&lt;br /&gt;
&lt;br /&gt;
Table name: alleghenycountytif&lt;br /&gt;
&lt;br /&gt;
=== Atlanta ===&lt;br /&gt;
&lt;br /&gt;
Table name: atlantatif&lt;br /&gt;
&lt;br /&gt;
=== Columbus, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: columbustif&lt;br /&gt;
&lt;br /&gt;
=== Washington, D.C. ===&lt;br /&gt;
&lt;br /&gt;
Table name: dctif&lt;br /&gt;
&lt;br /&gt;
=== Dublin, OH ===&lt;br /&gt;
&lt;br /&gt;
Table name: dublintif&lt;br /&gt;
&lt;br /&gt;
=== Vermont ===&lt;br /&gt;
&lt;br /&gt;
Table name: vermonttif&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22282</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22282"/>
		<updated>2017-12-05T16:33:09Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Chicago */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Uploading KML file ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
&lt;br /&gt;
Table name: chicagotif&lt;br /&gt;
&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
	<entry>
		<id>http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22281</id>
		<title>TIF Project</title>
		<link rel="alternate" type="text/html" href="http://www.edegan.com/mediawiki/index.php?title=TIF_Project&amp;diff=22281"/>
		<updated>2017-12-05T16:29:51Z</updated>

		<summary type="html">&lt;p&gt;JeeminS: /* Chicago */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{McNair Projects&lt;br /&gt;
|Has title=TIF Project&lt;br /&gt;
|Has owner=Cindy Ryoo, Yunnie Huang,&lt;br /&gt;
|Has start date=11/20/2017&lt;br /&gt;
|Has deadline=12/09/2017&lt;br /&gt;
|Has keywords=TIF; city; data; GIS; Tax Increment Finance; KML&lt;br /&gt;
|Has project status=Active&lt;br /&gt;
}}&lt;br /&gt;
=TIF Data=&lt;br /&gt;
&lt;br /&gt;
Data is in &lt;br /&gt;
 E:\McNair\Projects\Agglomeration\TIF&lt;br /&gt;
&lt;br /&gt;
==Cities in our sample that have GIS data===&lt;br /&gt;
&lt;br /&gt;
===Chicago,IL===&lt;br /&gt;
	Chicago, IL is in our data with 179 max active.&lt;br /&gt;
  &lt;br /&gt;
	2017 GIS Data it appears to contain everything that we might need (the CSV contains everything)!!!&lt;br /&gt;
	https://data.cityofchicago.org/Community-Economic-Development/Boundaries-Tax-Increment-Financing-Districts/fz5x-7zak&lt;br /&gt;
&lt;br /&gt;
	Other&lt;br /&gt;
		Data on all tifs (inc start and end date) up to 2012&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/TIF-Status-and-Eligibility/3qsz-jemf&lt;br /&gt;
&lt;br /&gt;
		Map (but not GIS) based data of Chicago TIFs up to 2017. Included CDC date.&lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects-Map/v3a3-hhqn&lt;br /&gt;
&lt;br /&gt;
		This dataset is a comprehensive list of every project in every TIF District that has received funding from the City of Chicago via the TIF program from the inception of TIF to current. &lt;br /&gt;
		https://data.cityofchicago.org/Community-Economic-Development/Tax-Increment-Financing-TIF-Projects/mex4-ppfc&lt;br /&gt;
&lt;br /&gt;
		Chicago KML from another source&lt;br /&gt;
		https://catalog.data.gov/dataset/boundaries-tax-increment-financing-districts&lt;br /&gt;
&lt;br /&gt;
===Columbus, OH===&lt;br /&gt;
	Columbus,OH is in our data with 29 max active&lt;br /&gt;
	KML with start dates!&lt;br /&gt;
	http://catalog.smartcolumbuside.com/en/dataset/tax-increment-financing-areas1&lt;br /&gt;
&lt;br /&gt;
===Washington, DC===&lt;br /&gt;
	Washington, DC is in our data with 63 max active&lt;br /&gt;
	Data from 2011 available with TIF dates:&lt;br /&gt;
	http://opendata.dc.gov/datasets/tax-increment-financing-tif-areas&lt;br /&gt;
		See also, high tech dev zones (2013):&lt;br /&gt;
		http://opendata.dc.gov/datasets/111b31a212814aad9320d301ccf9d6a9_20&lt;br /&gt;
		Econ dev zones (2004)&lt;br /&gt;
		http://opendata.dc.gov/datasets/a3aefd57db394fd68d739556253dc44d_18&lt;br /&gt;
		&lt;br /&gt;
===Houston, TX===&lt;br /&gt;
	Houston, TX is in our data with 101 max active&lt;br /&gt;
	Last updated 2017, appears to have dates!&lt;br /&gt;
	http://data.houstontx.gov/dataset/city-tax-increment-reinvestment-zones-tirz&lt;br /&gt;
&lt;br /&gt;
===Dallas, TX===&lt;br /&gt;
&lt;br /&gt;
Has a map: http://www.arcgis.com/home/webmap/viewer.html?url=https://gis.dallascityhall.com/wwwgis/rest/services/Eco_public/EconomicDevelopment/MapServer/1&lt;br /&gt;
But the data doesn't contain dates and doesn't appear to be exportable.&lt;br /&gt;
It looks like there is Dallas data with dates from 2016: http://www.dallascad.org/GISDataProducts.aspx&lt;br /&gt;
&lt;br /&gt;
==Vermont==&lt;br /&gt;
	Burlington, VT is in our data with 10 max active&lt;br /&gt;
&lt;br /&gt;
	GIS KML file, but doesn't contain creation date&lt;br /&gt;
	http://geodata.vermont.gov/datasets/cd53b08d40fc4e7dbc2757c36d038af5_7/data&lt;br /&gt;
&lt;br /&gt;
	Think the same thing is here:&lt;br /&gt;
	https://catalog.data.gov/dataset/vt-tax-increment-financing-tif-districts&lt;br /&gt;
	&lt;br /&gt;
	Overview info:&lt;br /&gt;
	http://accd.vermont.gov/community-development/funding-incentives/tif&lt;br /&gt;
&lt;br /&gt;
===Allegheny County, PA===&lt;br /&gt;
&lt;br /&gt;
PA cities in our data:&lt;br /&gt;
 Bethlehem	PA	10	Lehigh and Northampton counties&lt;br /&gt;
 Chesterbrook	PA	11	Chester County&lt;br /&gt;
 Horsham	PA	10	Montgomery County&lt;br /&gt;
 King of Prussia	PA	15	Montgomery County&lt;br /&gt;
 Philadelphia	PA	123	Philadelphia County&lt;br /&gt;
 Pittsburgh	PA	150	Allegheny County&lt;br /&gt;
 West Conshohocken	PA	Montgomery County&lt;br /&gt;
	&lt;br /&gt;
	Pittsburgh,PA is in Allegheny County, and may be covered in the data&lt;br /&gt;
	KML that is supposed to have dates but doesn't appear to&lt;br /&gt;
	https://data.wprdc.org/dataset/allegheny-county-tif-boundaries&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cities not in our sample==&lt;br /&gt;
&lt;br /&gt;
===Bloomington, IN===&lt;br /&gt;
	Bloomington, IN is not in our data&lt;br /&gt;
&lt;br /&gt;
	Some maps that plot TIFs, suggesting underlying data...&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset/tax-increment-financing-tif-district-maps&lt;br /&gt;
	&lt;br /&gt;
	They don't host the GIS data on their own site:&lt;br /&gt;
	https://data.bloomington.in.gov/en/dataset?sort=score+desc%2C+metadata_modified+desc&amp;amp;res_format=KML&amp;amp;q=&amp;amp;page=2&lt;br /&gt;
&lt;br /&gt;
===Dublin, OH===&lt;br /&gt;
	Dublin, OH is not in our data&lt;br /&gt;
	KML GIS data, has creation and expiration date!&lt;br /&gt;
	http://data-dublinohio.opendata.arcgis.com/datasets/ff0af920c18e4aa78459137b6efcd3d3_0?uiTab=table&amp;amp;selectedAttributes%5B%5D=TIF_ID&amp;amp;chartType=bar&lt;br /&gt;
&lt;br /&gt;
===Oakland, MI===&lt;br /&gt;
	Oakland, MI is not in our data&lt;br /&gt;
	KML that has TIFs without dates&lt;br /&gt;
	http://accessoakland.oakgov.com/datasets/e90026448daa4d568daa3ef727d8d758_2&lt;br /&gt;
&lt;br /&gt;
==Cities We Couldn't Find==&lt;br /&gt;
*Denver, CO&lt;br /&gt;
*Bellevue, WA&lt;br /&gt;
*Nashville-Davidson metropolitan government (balance), TN&lt;br /&gt;
*Washington, DC&lt;br /&gt;
*South San Francisco, CA&lt;br /&gt;
*Portland, OR&lt;br /&gt;
*Durham, NC&lt;br /&gt;
*Pleasanton, CA&lt;br /&gt;
*Baltimore, MD&lt;br /&gt;
*Burlington, MA&lt;br /&gt;
*Carlsbad, CA&lt;br /&gt;
*Milpitas, CA&lt;br /&gt;
*Richardson, TX&lt;br /&gt;
*Lexington, MA&lt;br /&gt;
*Los Gatos, CA&lt;br /&gt;
*Memphis, TN&lt;br /&gt;
*Oakland, CA&lt;br /&gt;
*Charlotte, NC&lt;br /&gt;
*Reston, VA&lt;br /&gt;
*Tysons Corner, VA&lt;br /&gt;
*Sandy Springs, GA&lt;br /&gt;
*Campbell, CA&lt;br /&gt;
*Madison, WI&lt;br /&gt;
*St. Louis, MO&lt;br /&gt;
*Alpharetta, GA&lt;br /&gt;
*Berkeley, CA&lt;br /&gt;
*Raleigh, NC&lt;br /&gt;
*Phoenix, AZ&lt;br /&gt;
*Ann Arbor, MI&lt;br /&gt;
*Woburn, MA&lt;br /&gt;
*Cary, NC&lt;br /&gt;
*Emeryville, CA&lt;br /&gt;
*Marlborough, MA&lt;br /&gt;
*Burlingame, CA&lt;br /&gt;
*Salt Lake City, UT&lt;br /&gt;
*San Carlos, CA&lt;br /&gt;
*Plano, TX&lt;br /&gt;
*Scottsdale, AZ&lt;br /&gt;
*Stamford, CT&lt;br /&gt;
*Alexandria, VA&lt;br /&gt;
*Newton, MA&lt;br /&gt;
*Pasadena, CA&lt;br /&gt;
*Albuquerque, NM&lt;br /&gt;
*Arlington, VA&lt;br /&gt;
*Bethesda, MD&lt;br /&gt;
*Columbus, OH&lt;br /&gt;
*Florence-Graham, CA&lt;br /&gt;
*Kirkland, WA&lt;br /&gt;
*Los Altos, CA&lt;br /&gt;
*Cleveland, OH&lt;br /&gt;
*Minneapolis, MN&lt;br /&gt;
*Boca Raton, FL&lt;br /&gt;
*Gaithersburg, MD&lt;br /&gt;
*New Haven, CT&lt;br /&gt;
*Cincinnati, OH&lt;br /&gt;
*Eden Prairie, MN&lt;br /&gt;
*Foster City, CA&lt;br /&gt;
*Indianapolis city (balance), IN&lt;br /&gt;
*Peachtree Corners, GA&lt;br /&gt;
*Columbia, MD&lt;br /&gt;
*Hayward, CA&lt;br /&gt;
*Irving, TX&lt;br /&gt;
*Bothell, WA&lt;br /&gt;
*Watertown Town, MA&lt;br /&gt;
*Chantilly, VA&lt;br /&gt;
*Culver City, CA&lt;br /&gt;
*Norwalk, CT&lt;br /&gt;
*El Segundo, CA&lt;br /&gt;
*Herndon, VA&lt;br /&gt;
*Providence, RI&lt;br /&gt;
&lt;br /&gt;
There's data on a couple of places that we don't care about on https://ckan.geoplatform.gov/#?q=tax%20increment&lt;br /&gt;
&lt;br /&gt;
==Other Stuff==&lt;br /&gt;
&lt;br /&gt;
===St. Louis, MI===&lt;br /&gt;
&lt;br /&gt;
St. Louis has data but without GIS shapes. The data is here: http://www.bettertogetherstl.com/studies/economic-development/tif-database . It was apparently extracted from a 2015 report here: http://dor.mo.gov/pdf/2015TIFAnnualReport.pdf . The locations are google mapped here: http://www.bettertogetherstl.com/tax-incremental-financing-map&lt;br /&gt;
&lt;br /&gt;
===Philly===&lt;br /&gt;
&lt;br /&gt;
City of Philly Enterprise Zones: &lt;br /&gt;
&lt;br /&gt;
Enterprise Zones - Data includes commercial and industrial zones, i.e. areas with specific federal enterprise zone designation meant to attract and support businesses in blighted areas. Blighted areas are defined as meeting one of seven city mandated criteria, including unsafe, unsanitary and inadequate conditions; economically or socially undesirable land use; and faulty street and lot layout. https://www.opendataphilly.org/dataset/enterprise-zones&lt;br /&gt;
&lt;br /&gt;
Also Empowerment Zones. https://www.opendataphilly.org/dataset/empowerment-zones&lt;br /&gt;
&lt;br /&gt;
===Larimer County===&lt;br /&gt;
&lt;br /&gt;
Larimer County Colorado: https://www.larimer.org/assessor/tif (no data)&lt;br /&gt;
&lt;br /&gt;
===New Hampshire===&lt;br /&gt;
&lt;br /&gt;
New Hampshire report (2003) says that &amp;quot;some have GIS data&amp;quot; http://www.swrpc.org/files/data/com_econ_dev/ed/December%202003_%20TIF%20Handbook_7232010forweb.pdf&lt;br /&gt;
We have Nashua, NH (max 14 active) in our data, but it isn't one that has GIS data.&lt;br /&gt;
&lt;br /&gt;
===Sherman, TX===&lt;br /&gt;
&lt;br /&gt;
Sherman, TX has GIS data without dates: https://koordinates.com/layer/16403-finance-tax-increment-finance-tif/&lt;br /&gt;
&lt;br /&gt;
===Cincinnati===&lt;br /&gt;
&lt;br /&gt;
Cincinnati has TIFs (http://choosecincy.com/Economic-Development/Programs-Services/Incentives-Financing/Tax-Increment-Financing.aspx) but no GIS data...&lt;br /&gt;
&lt;br /&gt;
===Michigan===&lt;br /&gt;
&lt;br /&gt;
Michigan as some state level data (not GIS) in summary somewhere because it is reference in this report: http://www.senate.michigan.gov/SFA/Publications/Notes/2016Notes/NotesWin16dk.pdf&lt;br /&gt;
&lt;br /&gt;
==Academic/Policy papers==&lt;br /&gt;
&lt;br /&gt;
A policy paper on the econ effects of TIFs https://projects.cberdata.org/reports/TifEconEffects-012815.pdf&lt;br /&gt;
&lt;br /&gt;
=Uploading TIF Data onto database (tigertest)=&lt;br /&gt;
&lt;br /&gt;
== Uploading KML file ==&lt;br /&gt;
&lt;br /&gt;
 researcher@McNairDBServ:/bulk/tigertest$ ogr2ogr -f PostgreSQL PG:&amp;quot;dbname=tigertest&amp;quot; chicagotif.kml -nln chicagotif&lt;br /&gt;
(chicagotif.kml is the name of the KML file and chicagotif is the name I wish to name the table)&lt;br /&gt;
&lt;br /&gt;
== Cities &amp;amp; Tables ==&lt;br /&gt;
&lt;br /&gt;
=== Chicago ===&lt;br /&gt;
    Column    |           Type           | Collation | Nullable |                   Default                   | Storage  | Stats target | Description &lt;br /&gt;
 -------------+--------------------------+-----------+----------+---------------------------------------------+----------+--------------+-------------&lt;br /&gt;
 ogc_fid      | integer                  |           | not null | nextval('chicagotif_ogc_fid_seq'::regclass) | plain    |              | &lt;br /&gt;
 wkb_geometry | geometry(Geometry,4326)  |           |          |                                             | main     |              | &lt;br /&gt;
 name         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 description  | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 timestamp    | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 begin        | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 end          | timestamp with time zone |           |          |                                             | plain    |              | &lt;br /&gt;
 altitudemode | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 tessellate   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 extrude      | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 visibility   | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 draworder    | integer                  |           |          |                                             | plain    |              | &lt;br /&gt;
 icon         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 name_trim    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 show         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 approval_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ref          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 objectid     | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 ind          | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 repealed_d   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 comm_area    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 wards        | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_area   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 sbif         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 shape_len    | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 type         | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 expiration   | character varying        |           |          |                                             | extended |              | &lt;br /&gt;
 use          | character varying        |           |          |                                             | extended |              |&lt;/div&gt;</summary>
		<author><name>JeeminS</name></author>
		
	</entry>
</feed>