Following up the OKW latest meetup a Taxonomy of machines and manufacturing processes is needed.
Miro board Public access link:
from datasette import hookimpl, database | |
from geopy import distance | |
Origin = (1.3733, 32.2903) | |
@hookimpl | |
def prepare_connection(conn): | |
conn.create_function( | |
"near_me", 2, lambda lat, lon: distance.distance(Origin, (lat,lon)).km | |
) |
Following up the OKW latest meetup a Taxonomy of machines and manufacturing processes is needed.
Miro board Public access link:
The OKW Standard it's currently the most used standard of the IoPA with almost 15000 entries contributed mainly by:
SubmissionDate,ENUMERATOR,agree_to_participate,name,COUNTRY,Latitude,Longitude,Altitude,-Accuracy,owner,contact,EMAIL,TYPE,affiliation,partner_funder,certifications,facility_status_1,Working_hours,working_days,date_founded,storage_capacity,size_floor_size,loading_dock,back_up_generator,uninterrupted_power_supply,access_type-access_type_1,access_type-wheelchair_access,access_type-road_access,human_capacity-headcount,human_capacity-maker,Please_specify_the_things_produced_by_the_facility,BATCH SIZE,The_equipment_available_for_us,Please_Specify_the_equipment_in_the_manufacturing_facility,Please_provide_the_model,How_many_are_there,Manufacturing_process_001,Materials_used,Plastic_s_type,Metal_s_type,Wood_type,Elastomer_s_type,Ceramics_type,Electronics_type,Others,maintenance_schedule | |
2021-12-12T07:56:21.590Z,ANN DRUSCILLAR,1,ASIIMWE AMON,UGANDA,0.3716101,32.734651,1162.0,5.0,ASIIMWE AMON,0778556366.0753165900,ASIIMWEAMON4@GMAIL.COM ,WORKSHOP,,UNSPECIFIED,MUKONO MUNICIPAL COUNCIL,ACTIVE,"7, 19",SUN MON TUE WED THU |
Autor: Antonio de Jesus Anaya Hernandez, DevOps eng. for the IoPA Autor: The internet of Production Alliance, 2022 Data was collected by "Field Ready" The Open Know Where OKW Standard is part of the Internet of Production Alliance and its members. License: CC BY SA CC BY SA
import math | |
def hipotenusa(cateto_a, cateto_b): | |
return math.sqrt((cateto_a**2) + (cateto_b**2)) | |
# cateto_a = float(input("Escribe el cateto a: ")) | |
# cateto_b = float(input("Escribe el cateto b: ")) | |
# resultado = hipotenusa(cateto_a, cateto_b) | |
# print("La hipotenusa es: ", resultado) |
https://kny5.github.io/personal_portfolio
Fab Academy profile: http://fabacademy.org/2021/labs/agrilab/students/antonio-anaya/
LinkedIn https://www.linkedin.com/in/antonio-anaya-62586a1a8/
Hackaday Prize 2020 Dream team https://hackaday.io/project/173455-2020-hdp-dream-team-field-ready
preguntas = ["¿Cómo te llamas?", "¿Cuál es tu nombre?", "¿Quién eres?", "¿Cómo te dicen?"] | |
niñxs = [] | |
adultos = [] | |
jovenes = [] | |
def saludar(name): | |
if name == "Gerardo": | |
print("Hola", name, "estas aprendiendo Python.") | |
return True |
Short url: caseywatts.com/mediawikionheroku
How to get set up with Mediawiki running on Heroku.
Fork https://github.com/mediawiki/mediawiki (from the web interface)
(master
worked fine for me, but you might want the last stable tag?)