Function that gets relative path to the filename
(filename)
| 265 | return np.column_stack([x, y, z]) |
| 266 | |
| 267 | def rel_path(filename): |
| 268 | """ |
| 269 | Function that gets relative path to the filename |
| 270 | """ |
| 271 | return os.path.join(os.getcwd(), os.path.dirname(__file__), filename) |
| 272 | |
| 273 | def get(geo_coord, mode=2, verbose=True): |
| 274 | """ |