Skip to content
Advertisement

Tag: coordinates

All possible points of (latitude,longitude) from latitude/longitude coordinates in separate arrays

I have latitude and longitude coordinates in two separate arrays: How can I easily find all possible points made up of these coordinates? I’ve been messing around with itertools.combinations: but this doesn’t work for me because the points (71,75) and (43,42) are latitude/latitude and longitude/longitude pairs. What I would like to have is this: The a and b arrays will

Advertisement