Problem I want to store WGS84-coordinates in two integers for latitude and longitude instead of floats to get a higher […]
Tag: coordinate-system
Conversion from RGB to CIELAB with a complex formula
Problem let deltaF: TransformBlock = { f in let transformation = (f > pow((6.0/29.0), 3.0)) ? pow(f, 1.0/3.0) : (1/3) […]
Dynamic field access in Haskell
Problem I have to transform a response into the internal Coordinate record, some of the fields are lists and I […]
3-axis coordinate system for a Chinese Checkers board
Problem About a year ago, my brother and I came up with this cool idea for how to solve the […]
X, Y Coordinates class in Lazarus (Delphi-like)
Problem After I’ve now officially announced, that I’m discontinuing my color picker for Windows, I’m about to embark on a […]
State machine translates text into executable python code [v2]
Problem A few days ago I started writing my own compiler-like program which has the goal to compile plain text […]
“Critter Tracking: When does it cross its own path?”
Problem Added: Version #2 of this question Minor Update/Additonal information: This question is based on a Codility question similar to […]
3-axis coordinate system for a Chinese Checkers board
Problem About a year ago, my brother and I came up with this cool idea for how to solve the […]
Get locations that are x km away using Latitude/Longitude
Problem So I have a solution for this which uses a for loop and calculates distance between the main point […]
Find intersection of rectangle with itself rotated
Problem Given ww, height αα around origin clockwise, I wrote a code to find the intersection area. First I find […]