Pluto and Charon with known topography scaled one in ten million

Pluto and Charon with known topography scaled one in ten million

thingiverse

This is a HTML table that lists various celestial bodies and their corresponding scales on the Thingiverse platform. The columns represent different levels of detail in the scale, with "M" representing one million times larger. Here's an example of how you can extract this information using Python: ``` import requests from bs4 import BeautifulSoup url = 'https://www.thingiverse.com/tato_713/collections/celestial-bodies' response = requests.get(url) soup = BeautifulSoup(response.text, 'html.parser') table = soup.find('table') rows = table.find_all('tr') for row in rows: cols = row.find_all('td') if len(cols) > 1: body_name = cols[0].find('a').text scales = [col.find('a').text for col in cols[1:]] print(f"{body_name}: {scales}") ``` This script sends a GET request to the URL, parses the HTML response using BeautifulSoup, and then finds all the rows in the table. For each row, it extracts the name of the celestial body from the first column and its corresponding scales from the remaining columns. Please note that this is a simple example and might not cover all possible cases (e.g., if there are multiple rows with different numbers of columns).

Download Model from thingiverse

With this file you will be able to print Pluto and Charon with known topography scaled one in ten million 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 Pluto and Charon with known topography scaled one in ten million.