add package descriptions

master
Oliver Tonnhofer 2013-09-02 10:26:29 +02:00
parent 7f4c807cce
commit 52fb1dfd6e
21 changed files with 86 additions and 0 deletions

4
cache/binary/doc.go vendored Normal file
View File

@ -0,0 +1,4 @@
/*
Package binary provides functions for (un)marshaling cache data.
*/
package binary

4
cache/doc.go vendored Normal file
View File

@ -0,0 +1,4 @@
/*
Package cache implements caches for coords, nodes, ways and relations data.
*/
package cache

4
cache/query/doc.go vendored Normal file
View File

@ -0,0 +1,4 @@
/*
Package query provides the query-cache sub command for debugging and testing.
*/
package query

4
config/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package config provides functions for parsing command line args and JSON config.
*/
package config

4
database/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package database defines interfaces to be implemented.
*/
package database

4
database/postgis/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package postgis implements the database interfaces for PostGIS.
*/
package postgis

4
diff/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package diff provides the diff sub command for updating with diff files.
*/
package diff

4
diff/parser/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package parser provides a parser for OSM diff files in XML format.
*/
package parser

4
diff/state/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package state provides functions for reading and writing diff status files.
*/
package state

4
element/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package element provides basic types for OSM elements (coords/nodes/ways/relations/etc).
*/
package element

4
geom/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package geom provides functions for building geometries.
*/
package geom

4
geom/geos/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package geos provides a wrapper to the GEOS library.
*/
package geos

4
geom/limit/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package limit provides functions to clip geometries at polygon boundaries.
*/
package limit

4
geom/ogr/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package ogr provides a wrapper to the GDAL/OGR library.
*/
package ogr

4
logging/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package logging provides a simple framework for reporting messages and the import progress.
*/
package logging

4
mapping/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package mapping provides functions for defining and executing the database schema.
*/
package mapping

6
parser/pbf/doc.go Normal file
View File

@ -0,0 +1,6 @@
/*
Package pbf provides functions for parsing OSM PBF files.
The subpackage osmpbf contains the generated code for the OSM .proto files.
*/
package cache

4
proj/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package proj provides functions for coordinate transformations.
*/
package proj

4
reader/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package reader orchestrates the reading part of the import process.
*/
package reader

4
stats/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package stats provides functions to collect statistics about the import process.
*/
package stats

4
writer/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package writer orchestrates the writing part of the import process.
*/
package writer