Skip to content

Commit

Permalink
Add license file and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yellow-sky committed Dec 2, 2013
1 parent 80da3cd commit 5b9e348
Show file tree
Hide file tree
Showing 11 changed files with 438 additions and 13 deletions.
339 changes: 339 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ osm-geocode

Set of geocoding scripts for use with openstreetmap.ru

Original authors:
Evgeny Nikulin ([email protected])
Denis Rykov ([email protected])
Original authors
----------------
Evgeny Nikulin ([email protected])
Denis Rykov ([email protected])

License
-------
GNU GENERAL PUBLIC LICENSE Version 2
10 changes: 10 additions & 0 deletions add_geom_columns.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# -*- coding: utf-8 -*-
"""
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
import sys
import locale
from os import path
Expand Down
10 changes: 10 additions & 0 deletions address_parser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# -*- coding: utf-8 -*-
"""
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
import sys
import locale
from os import path
Expand Down
12 changes: 12 additions & 0 deletions converter.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# -*- coding: utf-8 -*-
"""
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""

import sys
import locale
from os import path
Expand Down
10 changes: 10 additions & 0 deletions district_name_helper.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# -*- coding: utf-8 -*-
"""
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""

try:
from osgeo import ogr, osr, gdal
Expand Down
13 changes: 13 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
#!/usr/bin/python

# -*- coding: utf-8 -*-
"""
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""

import sys
import glob
import os
Expand Down
12 changes: 2 additions & 10 deletions osm_ru_geocoder.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
# -*- coding: utf-8 -*-
"""
/***************************************************************************
RuGeocoder
A QGIS plugin
Geocode your csv files to shp
-------------------
begin : 2012-02-20
copyright : (C) 2012 by Nikulin Evgeniy
email : nikulin.e at gmail
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
Expand All @@ -18,6 +9,7 @@
* *
***************************************************************************/
"""

import os
import json
import urllib2
Expand Down
11 changes: 11 additions & 0 deletions point_shift.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# -*- coding: utf-8 -*-
"""
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""

import sys
import locale
import math
Expand Down
11 changes: 11 additions & 0 deletions region_name_helper.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# -*- coding: utf-8 -*-
"""
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""

import sys
import locale
from os import path
Expand Down
12 changes: 12 additions & 0 deletions structure_checker.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# -*- coding: utf-8 -*-
"""
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""

import sys
import locale

Expand Down

0 comments on commit 5b9e348

Please sign in to comment.