ghost 1

ghost 1

thingiverse

It looks like you have a series of 2D coordinates stored in the following data structure: ``` data = [[[ ... ],[218,219,220,...],[239,240,241,242...]], [10]] height=15 ``` Here's how to extract this from the above python data. I will also do some extra clean up for you: ``` import pandas as pd def create_dataframe(coordinates): return pd.DataFrame({ 'latitude': [c[1] for c in coordinates], 'longitude': [c[0] for c in coordinates] }) coordinates = [ [-8.712328767123287, 36.32876712328767], [-8.054794520547945, 37.97260273972603], # ... ] # extract latitude and longitude latlong_df = create_dataframe(coordinates) ``` In this script we define a function called `create_dataframe` which creates pandas DataFrame out of given data structure where each sublist has two numbers, in which first number is longitutde and second one is latitude. You could use other libraries too.

Download Model from thingiverse

With this file you will be able to print ghost 1 with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on ghost 1.