aboutsummaryrefslogtreecommitdiff
path: root/bigtop-data-generators/bigtop-location-data/README.md
diff options
context:
space:
mode:
authorRJ Nowling <rnowling@gmail.com>2015-08-26 08:53:19 -0500
committerRJ Nowling <rnowling@gmail.com>2015-08-26 08:53:19 -0500
commit74a66b1e8e0a3721f834bd9c36b826a68b494d34 (patch)
tree34efea732ef8b6103ccbc582229c1d9badcd1b97 /bigtop-data-generators/bigtop-location-data/README.md
parentcaae595712381706a4ed4e938c393ede3b1311b2 (diff)
BIGTOP-1986. Extract location dataset from BigPetStore data generator
Diffstat (limited to 'bigtop-data-generators/bigtop-location-data/README.md')
-rw-r--r--bigtop-data-generators/bigtop-location-data/README.md50
1 files changed, 50 insertions, 0 deletions
diff --git a/bigtop-data-generators/bigtop-location-data/README.md b/bigtop-data-generators/bigtop-location-data/README.md
new file mode 100644
index 00000000..9aff06f9
--- /dev/null
+++ b/bigtop-data-generators/bigtop-location-data/README.md
@@ -0,0 +1,50 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+BigTop Location Data
+====================
+
+U.S. zipcode data including GPS coordinates, median household incomes,
+and population sizes from the U.S. Census along with a reader and
+data model.
+
+Building and Testing
+--------------------
+We use the Gradle build system for the BPS data generator so you'll need
+to install Gradle on your system.
+Once that's done, you can use gradle to run the included unit tests
+and build the data generator jar.
+
+To build:
+
+ $ gradle build
+
+This will create several directories and a jar located at:
+
+ build/libs/bigtop-location-data-1.1.0-SNAPSHOT.jar
+
+Building automatically runs the included unit tests. If you would prefer
+to just run the unit tests, you can do so by:
+
+ $ gradle test
+
+To clean up the build files, run:
+
+ $ gradle clean
+
+To install a jar into your local maven repository:
+
+ $ gradle install