Chris Wilkins

Male

Clemson, SC

United States

Profile Information:

Web or Blog
http://www.chriswilkins.com

Comment Wall:

  • Casey Wong

    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.
  • Omid MK

    hey Chris,
    not really... is he working here or a student?
  • Omid MK

    well, I am not sure if I know him... maybe I'll get to know him when I start working, I am just a simple student now!
  • Joe Manganelli

    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.

    Have a great holiday.

    Joe
  • Sameer Kumar

    Thanks for the kind words, Chris. I am glad you enjoyed the presentation.
  • Ryan Freeland

    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!
  • Benjamin Golder

    FYI, I'm working with GIS a lot now, so if you decide to get into that at some point, feel free to drop me a line.
  • Stan Carroll

    Chris,

    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
  • Andres Gonzalez

    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?
  • Irene Scudellari

    Thanks Chris,

    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.
  • Irene Scudellari

    Congratulation! no problem enjoy your holiday I will sort it out!thanks
  • tommy

    thanks Chris,
    i rendered with hypershot 9 for windows and vray 1.5 for rhino (sphere render).
  • 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

  • Fernando Rial

    Thank Chris, I´m working on it. By now in the good direction. I´ll you know about the result.
  • 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.

  • 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