Skip to content

Instantly share code, notes, and snippets.

@bencevans
Created June 2, 2012 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bencevans/2857792 to your computer and use it in GitHub Desktop.
Save bencevans/2857792 to your computer and use it in GitHub Desktop.
SQL Structure for RHoK_NDWI
-- phpMyAdmin SQL Dump
-- version 3.4.9
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 02, 2012 at 11:56 AM
-- Server version: 5.5.9
-- PHP Version: 5.3.6
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `RHoK_NDWI`
--
-- --------------------------------------------------------
--
-- Table structure for table `Data`
--
CREATE TABLE IF NOT EXISTS `Data` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`latitude` float NOT NULL,
`longitude` float NOT NULL,
`bandOne` int(5) NOT NULL,
`bandTwo` int(5) NOT NULL,
`bandThree` int(5) NOT NULL,
`bandFour` int(5) NOT NULL,
`bandFive` int(11) NOT NULL,
`bandSix` int(11) NOT NULL,
`bandSeven` int(11) NOT NULL,
`vegetation` float NOT NULL,
`cloud` tinyint(1) NOT NULL,
`NDWI` float NOT NULL,
`timeTaken` datetime NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment