<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>culagovski.net</title>
	<link>http://culagovski.net</link>
	<description>space is the algorithm</description>
	<pubDate>Mon, 06 Oct 2008 14:06:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Rhino + Grasshopper + Python</title>
		<link>http://culagovski.net/2008/algorithmic/rhino-grasshopper-python/</link>
		<comments>http://culagovski.net/2008/algorithmic/rhino-grasshopper-python/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 14:03:05 +0000</pubDate>
		<dc:creator>rodrigo</dc:creator>
		
		<category><![CDATA[rhino3d]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[parametric]]></category>

		<category><![CDATA[form follows data]]></category>

		<category><![CDATA[algorithmic]]></category>

		<guid isPermaLink="false">http://culagovski.net/2008/uncategorized/rhino-grasshopper-python/</guid>
		<description><![CDATA[Have been trying some things using the latest Grasshopper Beta with scripting support, using Python. It&#8217;s an interesting middle ground between the simplicity and straightforwardness of Grasshopper&#8217;s interface and the flexibility and power of Python.
The example is a simple parametric surface paneller, that recursively divides a surface according to its Gaussian curvature. The more curved [...]]]></description>
			<content:encoded><![CDATA[<p>Have been trying some things using the latest <a href="http://grasshopper.rhino3d.com/" target="_blank">Grasshopper </a>Beta with scripting support, using Python. It&#8217;s an interesting middle ground between the simplicity and straightforwardness of Grasshopper&#8217;s interface and the flexibility and power of Python.</p>
<p>The example is a simple parametric surface paneller, that recursively divides a surface according to its Gaussian curvature. The more curved areas get progressively smaller divisions. I use scripting to handle recursion, and Grasshopper component for all the geometry, sliders, etc.</p>
<p>Files here:<a href="http://grasshopper3d.googlegroups.com/web/gaussian5.wrm?hl=en&amp;gda=dtWs3T8AAABldvTupClBBQRPKkY0ld_QOgkMFYQ7R7n74Vq72konaBlpl9N3Bb2uvzZ0ZXNjQZiccyFKn-rNKC-d1pM_IdV0">grasshopper </a>and <a href="http://grasshopper3d.googlegroups.com/web/gauss.3dm?hl=en&amp;gda=UGginjsAAABldvTupClBBQRPKkY0ld_QOgkMFYQ7R7n74Vq72konaBoFo2McESAn6U96_0gW5xcGRdr3QrylPkw2aRbXD_gF">rhino</a>. Requires current GH Beta.</p>
<p><a href="http://culagovski.net/wp-content/uploads/2008/10/screenhunter_06-oct-06-0955.jpg" target="_blank" title="screenhunter_06-oct-06-0955.jpg"><img src="http://culagovski.net/wp-content/uploads/2008/10/screenhunter_06-oct-06-0955.thumbnail.jpg" title="screenhunter_06-oct-06-0955.jpg" alt="screenhunter_06-oct-06-0955.jpg" class="imageframe" width="600" height="434" /></a></p>
<p><a href="http://culagovski.net/wp-content/uploads/2008/10/screenhunter_03-oct-06-0952.jpg" target="_blank" title="Grasshopper canvas"><img src="http://culagovski.net/wp-content/uploads/2008/10/screenhunter_03-oct-06-0952.thumbnail.jpg" title="Grasshopper canvas" alt="Grasshopper canvas" class="imageframe" width="600" height="260" /></a></p>
<pre>
from RMA.OpenNURBS import *
A = []
B = []
C = []
D = []

def sub(u,v, depth, ud, vd):
  if u>=maxu or v>=maxv:
    return ""
  if depth < 2:
    A.append(On3dPoint(u,v,0))
    B.append(On3dPoint(u+ud,v,0))
    C.append(On3dPoint(u+ud,v+vd,0))
    D.append(On3dPoint(u,v+vd,0))
  else:
    ud/=2
    vd/=2
    for center in ((u,v),(u+ud,v),(u+ud,v+vd),(u,v+vd)):
      u,v = center
      sub(u,v,depth-1, ud, vd)

u = uv.x
v = uv.y
depth = int(G*j)
ud=(maxu-minu)/i
vd=(maxv-minv)/i
sub(u,v,depth,ud,vd)
</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://culagovski.net/2008/algorithmic/rhino-grasshopper-python/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Maya2008 + Pymel</title>
		<link>http://culagovski.net/2008/algorithmic/maya2008-pymel/</link>
		<comments>http://culagovski.net/2008/algorithmic/maya2008-pymel/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 19:00:52 +0000</pubDate>
		<dc:creator>rodrigo</dc:creator>
		
		<category><![CDATA[maya]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[parametric]]></category>

		<category><![CDATA[form follows data]]></category>

		<category><![CDATA[algorithmic]]></category>

		<guid isPermaLink="false">http://culagovski.net/2008/algorithmic/maya2008-pymel/</guid>
		<description><![CDATA[Pymel fixes Maya&#8217;s python API.
A first simple experiment, populating a NURBS surface using its UV coordinates.



from __future__ import division

usub = 7
vsub = 20
usize = 8
vsize = 1
depth = 0.5

surfs = selectedNodes()

def pt(surf,u,v):
	return pointOnSurface( surf, u=usize*u/usub, v=vsize*v/vsub)

for surf in surfs:
	for u in range(usub):
		for v in range(vsub):
			pt1 = pt(surf,u,v)
			pt2 = pt(surf,u+1,v)
			pt3 = pt(surf,u+1,v+1)
			pt4 = pt(surf,u,v+1)
			c=curve(p=[pt1,pt2,pt3,pt4,pt1])
			extrude (c, et [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/p/pymel/">Pymel </a>fixes Maya&#8217;s python API.</p>
<p>A first simple experiment, populating a NURBS surface using its UV coordinates.</p>
<p><a href="http://culagovski.net/wp-content/uploads/2008/07/capt_1.jpg" target="_blank" title="capt_1.jpg"><img src="http://culagovski.net/wp-content/uploads/2008/07/capt_1.thumbnail.jpg" title="capt_1.jpg" alt="capt_1.jpg" class="imageframe" width="400" height="292" /></a></p>
<p><a href="http://culagovski.net/wp-content/uploads/2008/07/capt_4.jpg" target="_blank" title="capt_4.jpg"><img src="http://culagovski.net/wp-content/uploads/2008/07/capt_4.thumbnail.jpg" title="capt_4.jpg" alt="capt_4.jpg" class="imageframe" width="400" height="292" /></a></p>
<pre>
from __future__ import division

usub = 7
vsub = 20
usize = 8
vsize = 1
depth = 0.5

surfs = selectedNodes()

def pt(surf,u,v):
	return pointOnSurface( surf, u=usize*u/usub, v=vsize*v/vsub)

for surf in surfs:
	for u in range(usub):
		for v in range(vsub):
			pt1 = pt(surf,u,v)
			pt2 = pt(surf,u+1,v)
			pt3 = pt(surf,u+1,v+1)
			pt4 = pt(surf,u,v+1)
			c=curve(p=[pt1,pt2,pt3,pt4,pt1])
			extrude (c, et = 0, upn=True, l= depth)</pre>
<p>Much simpler than MEL or the native Python implementation, easier to learn than RhinoScript and more powerful than MaxScript.</p>
]]></content:encoded>
			<wfw:commentRss>http://culagovski.net/2008/algorithmic/maya2008-pymel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some ideas</title>
		<link>http://culagovski.net/2008/uncategorized/some-ideas/</link>
		<comments>http://culagovski.net/2008/uncategorized/some-ideas/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 19:03:17 +0000</pubDate>
		<dc:creator>rodrigo</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://culagovski.net/2008/uncategorized/some-ideas/</guid>
		<description><![CDATA[1
 genetic housing layout system. Would create and distribute houses on a 3d landscape, mutating and mixing parameters such as:

plan layout
height/plan surface
size
orientation
etc.

The fitness function would be a mix of some cost/area calculation and a measure of the negative externalities created by each house, sort of a neighborhood good will indicator. It would be more expensive [...]]]></description>
			<content:encoded><![CDATA[<p><strong>1</strong></p>
<blockquote><p> genetic housing layout system. Would create and distribute houses on a 3d landscape, mutating and mixing parameters such as:</p></blockquote>
<ul>
<li>plan layout</li>
<li>height/plan surface</li>
<li>size</li>
<li>orientation</li>
<li>etc.</li>
</ul>
<blockquote><p>The fitness function would be a mix of some cost/area calculation and a measure of the negative externalities created by each house, sort of a neighborhood good will indicator. It would be more expensive to be too far away from other houses (urbanization costs), which should create some sort of balance.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://culagovski.net/2008/uncategorized/some-ideas/feed/</wfw:commentRss>
		</item>
		<item>
		<title>3d Isovist Paper</title>
		<link>http://culagovski.net/2007/algorithmic/3d-isovist-paper/</link>
		<comments>http://culagovski.net/2007/algorithmic/3d-isovist-paper/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 02:51:00 +0000</pubDate>
		<dc:creator>rodrigo</dc:creator>
		
		<category><![CDATA[marq]]></category>

		<category><![CDATA[gadget]]></category>

		<category><![CDATA[visualization]]></category>

		<category><![CDATA[visibility graph analysis]]></category>

		<category><![CDATA[form follows data]]></category>

		<category><![CDATA[algorithmic]]></category>

		<guid isPermaLink="false">http://culagovski.net/2007/uncategorized/3d-isovist-paper/</guid>
		<description><![CDATA[I recently published a paper on 3d isovist analysis at the 2007 SIGraDi conference in Mexico. The illustrations are in greyscale and they screwed up some of the notation (basically, not rendering any sub- or super-scripts).
As the paper points out, this is not a configurational analysis or a complete one, but the fact that it [...]]]></description>
			<content:encoded><![CDATA[<p>I recently published a paper on 3d isovist analysis at the 2007 SIGraDi conference in Mexico. The illustrations are in greyscale and they screwed up some of the notation (basically, not rendering any sub- or super-scripts).</p>
<p>As the paper points out, this is not a configurational analysis or a complete one, but the fact that it uses a sample of the possible lines of sight allows it to run in polynomial time <em>O</em>(<em>n</em><sup>2</sup>).</p>
<p>The paper can be downloaded <a href="http://culagovski.net/pub/sigradi2007_af07.content.pdf" target="_blank">here </a>or read online using Issuu:</p>
<div><object style="width:425px;height:288px" >
<param name="movie" value="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf?mode=preview&amp;previewLayout=white&amp;documentId=071220024442-3fc0b5e5d88d4a74b911e1e82f5ae1f4&amp;backgroundColor=%23ffffff&amp;layout=white" />
<param name="wmode" value="transparent" />
<param name="allowScriptAccess" value="always" /><embed src="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" style="width:425px;height:288px" flashvars="mode=preview&amp;previewLayout=white&amp;documentId=071220024442-3fc0b5e5d88d4a74b911e1e82f5ae1f4&amp;backgroundColor=%23ffffff&amp;layout=white" /></object>
<div style="width:425px;text-align:left;"><a href="http://issuu.com" target="_blank"><img src="http://static.issuu.com/webembed/previewers/style1/v1/m1.gif" border="0" ismap="ismap" /></a><a href="http://issuu.com/viewer?mode=embed&amp;documentId=071220024442-3fc0b5e5d88d4a74b911e1e82f5ae1f4&amp;layout=white" target="_blank"><img src="http://static.issuu.com/webembed/previewers/style1/v1/m2.gif" border="0" ismap="ismap" /></a><a href="http://issuu.com/embed/guide?documentId=071220024442-3fc0b5e5d88d4a74b911e1e82f5ae1f4&amp;width=425&amp;height=301" target="_blank"><img src="http://static.issuu.com/webembed/previewers/style1/v1/m3.gif" border="0" ismap="ismap" /></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://culagovski.net/2007/algorithmic/3d-isovist-paper/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Thesis in online reader thingie.</title>
		<link>http://culagovski.net/2007/thesis/32/</link>
		<comments>http://culagovski.net/2007/thesis/32/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 17:47:06 +0000</pubDate>
		<dc:creator>rodrigo</dc:creator>
		
		<category><![CDATA[gadget]]></category>

		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://culagovski.net/2007/uncategorized/32/</guid>
		<description><![CDATA[If you wish, you  can read my thesis online using this little Issuu widget (yeah, I know, stupid 2.0 name, it&#8217;s still pretty slick). You can page through the tiny version using the arrows, or click on a page to pop open a full reader (which can even be put into fullscreen mode).






]]></description>
			<content:encoded><![CDATA[<p>If you wish, you  can read my thesis online using this little Issuu widget (yeah, I know, stupid 2.0 name, it&#8217;s still pretty slick). You can page through the tiny version using the arrows, or click on a page to pop open a full reader (which can even be put into fullscreen mode).</p>
<div><object style="width:425px;height:288px" >
<param name="movie" value="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf?mode=preview&amp;previewLayout=white&amp;documentId=071220024442-3fc0b5e5d88d4a74b911e1e82f5ae1f4&amp;backgroundColor=%23ffffff&amp;layout=white" />
<param name="wmode" value="transparent" />
<param name="allowScriptAccess" value="always" /><embed src="http://static.issuu.com/webembed/viewers/style1/v1/IssuuViewer.swf" type="application/x-shockwave-flash" allowscriptaccess="always" wmode="transparent" style="width:425px;height:288px" flashvars="mode=preview&amp;previewLayout=white&amp;documentId=071220024442-3fc0b5e5d88d4a74b911e1e82f5ae1f4&amp;backgroundColor=%23ffffff&amp;layout=white" /></object>
<div style="width:425px;text-align:left;"><a href="http://issuu.com" target="_blank"><img src="http://static.issuu.com/webembed/previewers/style1/v1/m1.gif" border="0" ismap="ismap" /></a><a href="http://issuu.com/viewer?mode=embed&amp;documentId=071220024442-3fc0b5e5d88d4a74b911e1e82f5ae1f4&amp;layout=white" target="_blank"><img src="http://static.issuu.com/webembed/previewers/style1/v1/m2.gif" border="0" ismap="ismap" /></a><a href="http://issuu.com/embed/guide?documentId=071220024442-3fc0b5e5d88d4a74b911e1e82f5ae1f4&amp;width=425&amp;height=301" target="_blank"><img src="http://static.issuu.com/webembed/previewers/style1/v1/m3.gif" border="0" ismap="ismap" /></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://culagovski.net/2007/thesis/32/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Thesis!</title>
		<link>http://culagovski.net/2007/maxscript/thesis/</link>
		<comments>http://culagovski.net/2007/maxscript/thesis/#comments</comments>
		<pubDate>Sat, 20 Oct 2007 03:10:06 +0000</pubDate>
		<dc:creator>rodrigo</dc:creator>
		
		<category><![CDATA[geotagged]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[flickr]]></category>

		<category><![CDATA[marq]]></category>

		<category><![CDATA[parametric]]></category>

		<category><![CDATA[weak heritage]]></category>

		<category><![CDATA[algorithmic]]></category>

		<category><![CDATA[form follows data]]></category>

		<category><![CDATA[thesis]]></category>

		<category><![CDATA[visibility graph analysis]]></category>

		<category><![CDATA[maxscript]]></category>

		<guid isPermaLink="false">http://culagovski.net/2007/uncategorized/thesis/</guid>
		<description><![CDATA[Finished writing my thesis (!). PDF here. In spanish.
It&#8217;s basically about:

Definition of &#8220;weak heritage&#8221; as the elements of a city that make up its character but aren&#8217;t part of its &#8220;strong&#8221; heritage such as churches, avenues, etc. The weak heritage of a city includes individual houses, public spaces, small shops and other anonymous elements that [...]]]></description>
			<content:encoded><![CDATA[<p>Finished writing my thesis (!). <a href="http://culagovski.net/pub/TESIS%20RCR%20MARQ.pdf" target="_blank" title="Modelo Configuracional del Patrimonio Débil">PDF here.</a> In spanish.</p>
<p>It&#8217;s basically about:</p>
<ul>
<li>Definition of &#8220;weak heritage&#8221; as the elements of a city that make up its character but aren&#8217;t part of its &#8220;strong&#8221; heritage such as churches, avenues, etc. The weak heritage of a city includes individual houses, public spaces, small shops and other anonymous elements that make up the fabric of the city.</li>
<li>A three dimensional visibility graph analysis model,written in maxscript and python, that allows one to input a 3d mesh of the area one wishes to study and produces a series of graph centrality and clustering measurements.</li>
<li>An application of points 1 &amp; 2 to Valparaíso, Chile.</li>
</ul>
<p><a href="http://culagovski.net/pub/TESIS%20RCR%20MARQ.pdf" target="_blank" title="Modelo Configuracional del Patrimonio Débil"></a></p>
<p style="text-align: center"><a href="http://culagovski.net/pub/TESIS%20RCR%20MARQ.pdf" target="_blank" title="Modelo Configuracional del Patrimonio Débil"><img src="http://culagovski.net/wp-content/uploads/2007/10/con_11.jpg" alt="con_11.jpg" class="imageframe" height="563" width="400" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://culagovski.net/2007/maxscript/thesis/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Data correlation graphs on &#8216;many eyes&#8217;</title>
		<link>http://culagovski.net/2007/form-follows-data/data-correlation-graphs-on-manyeyes/</link>
		<comments>http://culagovski.net/2007/form-follows-data/data-correlation-graphs-on-manyeyes/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 14:13:44 +0000</pubDate>
		<dc:creator>rodrigo</dc:creator>
		
		<category><![CDATA[visualization]]></category>

		<category><![CDATA[geotagged]]></category>

		<category><![CDATA[visibility graph analysis]]></category>

		<category><![CDATA[form follows data]]></category>

		<guid isPermaLink="false">http://culagovski.net/2007/08/30/uncategorized/data-correlation-graphs-on-manyeyes/</guid>
		<description><![CDATA[
A graph I made on many eyes that lets you visualize the correlation between the number of flickr photos per node and visibility graph network centrality measurements for Valparaiso. It&#8217;s interactive, you can change the X and Y axes content, etc. Fairly cool.
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><a href="http://services.alphaworks.ibm.com/manyeyes/view/SIk76IsOtha6dhm_MYlhI2-" target="_new"><img src="http://culagovski.net/wp-content/uploads/2007/08/capt_11.thumbnail.jpg" alt="many eyes visualization" class="imageframe" height="234" width="400" /></a></p>
<p>A graph I made on <a href="http://services.alphaworks.ibm.com/manyeyes/app">many eyes</a> that lets you visualize the correlation between the number of flickr photos per node and visibility graph network centrality measurements for Valparaiso. It&#8217;s interactive, you can change the X and Y axes content, etc. Fairly cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://culagovski.net/2007/form-follows-data/data-correlation-graphs-on-manyeyes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GeoTagCloud</title>
		<link>http://culagovski.net/2007/form-follows-data/geotagcloud/</link>
		<comments>http://culagovski.net/2007/form-follows-data/geotagcloud/#comments</comments>
		<pubDate>Sun, 26 Aug 2007 20:22:55 +0000</pubDate>
		<dc:creator>rodrigo</dc:creator>
		
		<category><![CDATA[python]]></category>

		<category><![CDATA[flickr]]></category>

		<category><![CDATA[tagging]]></category>

		<category><![CDATA[geotagged]]></category>

		<category><![CDATA[thesis]]></category>

		<category><![CDATA[form follows data]]></category>

		<guid isPermaLink="false">http://culagovski.net/2007/08/26/form-follows-data/geotagcloud/</guid>
		<description><![CDATA[A geolocated tag-cloud for all the flickr photographs that have been placed within Valparaiso, Chile. The size of the text relates to the frequency of use of each tag in each position (not the overall frequency). This is part of my MArch thesis, and makes use of James Clarke&#8217;s flicker.py to retrieve the data.

If you [...]]]></description>
			<content:encoded><![CDATA[<p>A geolocated tag-cloud for all the flickr photographs that have been placed within Valparaiso, Chile. The size of the text relates to the frequency of use of each tag in each position (not the overall frequency). This is part of my MArch thesis, and makes use of James Clarke&#8217;s <a href="http://code.google.com/p/flickrpy/" title="flickr.py" target="_blank">flicker.py </a>to retrieve the data.</p>
<p dragover="true" style="text-align: center"><a href="http://culagovski.net/wp-content/uploads/2007/08/forblog.jpg" target="_blank" title="geotagcloud, valparaiso"><img src="http://culagovski.net/wp-content/uploads/2007/08/forblog.thumbnail.jpg" alt="geotagcloud, valparaiso" class="imageframe" height="400" width="381" /></a></p>
<p dragover="true">If you look at the full size version, you can make out the streets in a light grey line. The light-blue area is the bay.</p>
<p dragover="true">What I think is interesting is the way this constitutes a distributed, spontaneous semantic layer in actual space. It would be cool if you could have people generate these tags in real time, without photographs as intermediaries.</p>
<p dragover="true">My next step is to correlate this data with the <a href="http://culagovski.net/2007/08/04/thesis/3d-visibility-graph-analysis/" title="3d visiblity graph analysis">3D Visibility Graph Analysis.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://culagovski.net/2007/form-follows-data/geotagcloud/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cited in Brazil</title>
		<link>http://culagovski.net/2007/cite/cited-in-brazil/</link>
		<comments>http://culagovski.net/2007/cite/cited-in-brazil/#comments</comments>
		<pubDate>Fri, 10 Aug 2007 04:00:33 +0000</pubDate>
		<dc:creator>rodrigo</dc:creator>
		
		<category><![CDATA[cite]]></category>

		<guid isPermaLink="false">http://culagovski.net/2007/08/10/cited-in-brazil/</guid>
		<description><![CDATA[I just found an online reference to one of my papers (co-written with Sebastián Guevara), in Portuguese: &#8220;Sigradi          2006 - Santiago de Chile Um novo paradigma para o uso da          informática na arquitetura&#8220;.
]]></description>
			<content:encoded><![CDATA[<p>I just found an online reference to one of my papers (co-written with Sebastián Guevara), in Portuguese: &#8220;<a href="http://www.vitruvius.com.br/drops/drops18_07.asp">Sigradi          2006 - Santiago de Chile </a><a href="http://www.vitruvius.com.br/drops/drops18_07.asp">Um novo paradigma para o uso da          informática na arquitetura</a>&#8220;.</p>
]]></content:encoded>
			<wfw:commentRss>http://culagovski.net/2007/cite/cited-in-brazil/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Parametric Simulation of Building Codes</title>
		<link>http://culagovski.net/2007/algorithmic/parametric-simulation-of-building-codes/</link>
		<comments>http://culagovski.net/2007/algorithmic/parametric-simulation-of-building-codes/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 15:48:06 +0000</pubDate>
		<dc:creator>rodrigo</dc:creator>
		
		<category><![CDATA[parametric]]></category>

		<category><![CDATA[building codes]]></category>

		<category><![CDATA[simulation]]></category>

		<category><![CDATA[urban planning]]></category>

		<category><![CDATA[form follows data]]></category>

		<category><![CDATA[algorithmic]]></category>

		<guid isPermaLink="false">http://culagovski.net/2007/08/07/three-dimensioanl-parametric-simulation-of-building-codes/</guid>
		<description><![CDATA[Some work done with Claudio Labarca on the simulation of building codes in 3d. It takes as its input an area&#8217;s building codes, lots and road centerlines, and generates 3d models of possible buildings that maximize their allowed heights and surface areas.
This method has been used in the discussion and approval of building codes in [...]]]></description>
			<content:encoded><![CDATA[<p>Some work done with Claudio Labarca on the simulation of building codes in 3d. It takes as its input an area&#8217;s building codes, lots and road centerlines, and generates 3d models of possible buildings that maximize their allowed heights and surface areas.</p>
<p>This method has been used in the discussion and approval of building codes in 5 municipalities in Chile, and presented to the 2005 Sigradi conference in Lima, Perú (<a href="http://culagovski.net/wp-content/uploads/2007/08/sigradi2005_591content.pdf" title="SIMULACIÓN URBANA PARAMÉTRICA">PDF</a>, in Spanish) and 2CTV conference in Concepción, Chile.</p>
<p>It is similar to, while more basic than, Benamy Turkienicz&#8217;s <a href="http://www.cityzoom.com.br/" title="cityzoom" target="_blank">CityZoom</a>.</p>
<p>The code is a mess of AutoLisp, which encouraged me to learn more OO languages like Java and Python.</p>
<p style="text-align: center"><a href="http://culagovski.net/wp-content/uploads/2007/08/img1.jpg" target="_blank" title="Urban Simulation"><img src="http://culagovski.net/wp-content/uploads/2007/08/img1.thumbnail.jpg" alt="Urban Simulation" class="imageframe imgaligncenter" height="166" width="400" /></a></p>
<p dragover="true" style="text-align: center"><a href="http://culagovski.net/wp-content/uploads/2007/08/img2.jpg" target="_blank" title="Parameter Entry"><img src="http://culagovski.net/wp-content/uploads/2007/08/img2.thumbnail.jpg" dragover="true" alt="Parameter Entry" class="imageframe imgaligncenter" height="266" width="400" /></a></p>
<p dragover="true" style="text-align: center"> <a href="http://culagovski.net/wp-content/uploads/2007/08/img3.jpg" target="_blank" title="Process"><img src="http://culagovski.net/wp-content/uploads/2007/08/img3.thumbnail.jpg" dragover="true" alt="Process" class="imageframe imgalignleft" height="266" width="400" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://culagovski.net/2007/algorithmic/parametric-simulation-of-building-codes/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
