I love Nausicaa. That director infected me with a passion for flight. I watched Laputa, Nausicaa, Totoro, and Kiki's Delivery Service when I was a child.
Yes, thanks for adding me. Actually, I've been thinking on this issue I mentioned to you the other day. I got on here last night and searched attributes and was glad to find that there are people (i think including yourself) who are posting about adding various types of attributes and meta data to parametric models.
Hey Chris, yea thanks for the heads up i'm enrolled in Dave Lee's class next semester, and he's my advisor for my research studio next semester, have a good holiday, we'll see you next semester!
Thanks for your help today. It is exciting to see someone really master grasshopper. It provides inspiration for me to keep on trying. I look forward to checking out your website in detail.
Best Regards,
Well, let me know if you want to do one of these D-O-F with us in the South-East of USA too... It is too much FUN! or one at Clemson University together. By the way, we are testing few Lasers next week, tell me, do you use one and if you do, may I ask the brand?
I don't know scripting and I have to design this bridge ASAP. The fact is that my bridge plan is based on a rhombus shape and is also partly curved..just to make things easier!!
I am using as radius of the sphere the distance between the centre of the sphere and the point that I should obtain by intersecting the sphere with a plane, or I could use the diagonal equations. Is that right? It doesn't work very well though, when the two circles intersect the surface sometime disappear. I am still a bit confused about the folding geometry.
Mirco Bianchine replied brilliantly to it but I still don´t know how to separate the romboids from each other. I guess it is making a offset of the griven 4 point surfaces towards the interior of the surface and have that surface as a target surface for the box morph.
Yeah, we're basically importing shapefiles and converting them to Rhino geometry. I should update the shapefile code and add the Rhino converter to GitHub. The finches component, at this point, does not include any GIS-related functions, and is primarily for batch processing along with some other creative possible uses. In order to make a grasshopper component that reads shapefiles, I either have to convert all the shapefile reading code to C# or find a way to embed ironpython in a grasshopper component.
In terms of dealing with shapefiles and GIS, I would suggest looking into Geodjango and the OGR/GDAL library. I'm learning about it now, and it has some very easy ways of dealing with GIS data. You can use Python to run all of it, which is really nice.
KML is just one among many text formats used to describe geospatial data, and I haven't worked with it much, but GeoJSON looks a little nicer to work with, as does WKT.
Unfortunately there's still no easy-to-use GUI for GIS that is very affordable (in my opinion). But if you're a student ArcGIS is free for one year, and can do probably anything you would want.
I think it would be great if you converted my python code to VB.NET. You'll have to basically rewrite the python classes I made, as well as the functions for converting shapefile features to rhino geometry. There are dependency issues as well, because I am using specific Python libraries along with the dbfUtils module. You might want to seek out some appropriate substitutes within the .NET framework for reading byte data from binary files and for reading dbf files.
To convert shapefiles to rhino geometry, I divided the process into two steps:
1. using a python class to read the shapefile and then easily access it's various information. The class is instantiated using a file path to a shapefile:
s = Shp.ShpFile("/some/readable/path/to/a/shapefile.shp")
list_of_ShpFeatures = s.records
in the constructor method of ShpFile, it reads the whole shapefile using some nested methods for reading
Casey Wong
Nov 5, 2009
Omid MK
not really... is he working here or a student?
Nov 18, 2009
Omid MK
Nov 18, 2009
Joe Manganelli
Have a great holiday.
Joe
Nov 24, 2009
Sameer Kumar
Dec 2, 2009
Ryan Freeland
Dec 13, 2009
Benjamin Golder
Dec 16, 2009
Stan Carroll
Thanks for your help today. It is exciting to see someone really master grasshopper. It provides inspiration for me to keep on trying. I look forward to checking out your website in detail.
Best Regards,
Stan
Dec 24, 2009
Andres Gonzalez
Jan 27, 2010
Irene Scudellari
I don't know scripting and I have to design this bridge ASAP. The fact is that my bridge plan is based on a rhombus shape and is also partly curved..just to make things easier!!
I am using as radius of the sphere the distance between the centre of the sphere and the point that I should obtain by intersecting the sphere with a plane, or I could use the diagonal equations. Is that right? It doesn't work very well though, when the two circles intersect the surface sometime disappear. I am still a bit confused about the folding geometry.
May 10, 2010
Irene Scudellari
May 10, 2010
tommy
i rendered with hypershot 9 for windows and vray 1.5 for rhino (sphere render).
Jun 16, 2010
Fernando Rial
Hi Chris,
Thanks for getting back to me. I wrote about this post: http://www.grasshopper3d.com/forum/topics/diagonal-grid-without-1?c... as I was trying to make something similar. I finally downloaded the definition, but it was exactly was I was looking for.
I started a discussion yesterday about what I´m trying to do:
http://www.grasshopper3d.com/forum/topics/box-morph-in-diagrid?comm...
Mirco Bianchine replied brilliantly to it but I still don´t know how to separate the romboids from each other. I guess it is making a offset of the griven 4 point surfaces towards the interior of the surface and have that surface as a target surface for the box morph.
I´ll give it a try a post what I have.
Thanks for your help,
Fernando
Jan 12, 2011
Fernando Rial
Jan 16, 2011
Benjamin Golder
Yeah, we're basically importing shapefiles and converting them to Rhino geometry. I should update the shapefile code and add the Rhino converter to GitHub. The finches component, at this point, does not include any GIS-related functions, and is primarily for batch processing along with some other creative possible uses. In order to make a grasshopper component that reads shapefiles, I either have to convert all the shapefile reading code to C# or find a way to embed ironpython in a grasshopper component.
In terms of dealing with shapefiles and GIS, I would suggest looking into Geodjango and the OGR/GDAL library. I'm learning about it now, and it has some very easy ways of dealing with GIS data. You can use Python to run all of it, which is really nice.
KML is just one among many text formats used to describe geospatial data, and I haven't worked with it much, but GeoJSON looks a little nicer to work with, as does WKT.
Unfortunately there's still no easy-to-use GUI for GIS that is very affordable (in my opinion). But if you're a student ArcGIS is free for one year, and can do probably anything you would want.
Feb 8, 2011
Benjamin Golder
Hi Chris,
I think it would be great if you converted my python code to VB.NET. You'll have to basically rewrite the python classes I made, as well as the functions for converting shapefile features to rhino geometry. There are dependency issues as well, because I am using specific Python libraries along with the dbfUtils module. You might want to seek out some appropriate substitutes within the .NET framework for reading byte data from binary files and for reading dbf files.
To convert shapefiles to rhino geometry, I divided the process into two steps:
1. using a python class to read the shapefile and then easily access it's various information. The class is instantiated using a file path to a shapefile:
s = Shp.ShpFile("/some/readable/path/to/a/shapefile.shp")
list_of_ShpFeatures = s.records
in the constructor method of ShpFile, it reads the whole shapefile using some nested methods for reading
Feb 14, 2011