This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<title>Edit point location (with georeferencing)</title> | |
<style type="text/css"> | |
body { | |
margin: 0; | |
padding: 40px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'test/unit' | |
## | |
# Variant generator returns all possible combinations of elements of all given arrays. | |
# Running this gist will run the tests. For normal usage, simply copy VariantsGenerator module. | |
module VariantsGenerator | |
module_function | |
## | |
# Operates on arrays. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'test/unit' | |
#require 'ruby-debug' | |
## | |
# Variant generator returns all possible combinations of elements of all given arrays. | |
# Running this gist will run the tests. For functionality only this module is needed. | |
module VariantsGenerator | |
extend self | |
## |