diff --git a/migrations/009.landuse.down.sql b/migrations/009.landuse.down.sql index 30781b53..1e07e2c1 100644 --- a/migrations/009.landuse.down.sql +++ b/migrations/009.landuse.down.sql @@ -1,20 +1,12 @@ -- Remove planning and controls fields - --Landuse is hierachical. Highest level is Order (Residential) then Group (Residential-Dwelling) then Class (Residential-Dwelling-Detached house) - --Fields could be linked when not mixed use Example: If user inputs class field (Detached-House) on front end then trigger on db automatically will populate group and order. If we go this route then a trigger is needed on the db both to run and remove this process. - +--Landuse us a table as #358 -- Land use, single or mutiple classes? ALTER TABLE buildings DROP COLUMN IF EXISTS landuse_mutiple_use; -- Land use, how many different uses? ALTER TABLE buildings DROP COLUMN IF EXISTS landuse_number_of_uses; --- Land use NLUD class, this might be multiple and should match number of uses input -ALTER TABLE buildings DROP COLUMN IF EXISTS landuse_class; - --- Land use NLUD group, can only be one - prepopulated if mixed -ALTER TABLE buildings DROP COLUMN IF EXISTS landuse_group; - --- Land use NLUD order, can only be one - prepopulated if mixed -ALTER TABLE buildings DROP COLUMN IF EXISTS landuse_order; +-- Land use is table with 3 levels order > group > class +DROP TABLE IF EXISTS landuse_classifications; diff --git a/migrations/010.landuse.up.sql b/migrations/010.landuse.up.sql index b9b59298..d108d249 100644 --- a/migrations/010.landuse.up.sql +++ b/migrations/010.landuse.up.sql @@ -1,696 +1,2439 @@ -- Create land use and fields - --Landuse is hierachical. Highest level is Order (Residential) then Group (Residential-Dwelling) then Class (Residential-Dwelling-Detached house) --Fields could be linked when not mixed use Example: If user inputs class field (Detached-House) on front end then trigger on db automatically will populate group and order. If we go this route then a trigger is needed on the db both to run and remove this process. - --- Land use, single or mutiple classes? -ALTER TABLE buildings ADD COLUMN IF NOT EXISTS landuse_mutiple_use boolean DEFAULT false; - --- Land use, how many different uses? ---TODO should there be an upper limite (yes) on number of landuses in a building seems unlikley to me more than 5 (ie. Shop, office, resi but shopping center/train station could be the exception to this ) -ALTER TABLE buildings ADD COLUMN IF NOT EXISTS landuse_number_of_uses SMALLINT CHECK (landuse_number_of_uses between 1 and 20) DEFAULT 1; +--TODO Remove nulls, add parent_name and grand_parent name these +--TODO add lookup colum class-group for web app search +--TODO set keys +DROP TABLE IF EXISTS landuse_classifications; --- Land use NLUD class, this might be multiple and should match number of uses input. See page 34 of NLUD_documentation --- Agriculture And Fisheries --- Community Services --- Defence --- Forestry (not used) --- Industry And Business --- Minerals --- Mixed (our definition) --- Recreation And Leisure --- Residential --- Retail --- Transport --- Unused Land --- Utilities And Infrastructure --- Vacant And Derelict - -CREATE TYPE landuse_order AS ENUM ( - 'Agriculture And Fisheries', - 'Community Services', - 'Defence', - 'Industry And Business', - 'Minerals', - 'Mixed use', - 'Recreation And Leisure', - 'Residential', - 'Retail', - 'Transport', - 'Utilities And Infrastructure', - 'Vacant And Derelict', - 'None' +CREATE TABLE IF NOT EXISTS landuse_classifications ( + landuse_id VARCHAR(9) NOT NULL, + description VARCHAR(74) NOT NULL, + level VARCHAR(5) NOT NULL, + parent VARCHAR(4) ); -ALTER TABLE buildings ADD COLUMN IF NOT EXISTS landuse_order landuse_order DEFAULT 'None'; --- Land use NLUD group, can only be one - prepopulated if mixed. See page 34 of NLUD_documentation§ --- Example of front end autofill drop down http://jsfiddle.net/p6qnczgv/ ---TODO apostrophes in names need extra apostrophe ---TODO max length of enum is 63 characters.. -ALTER TABLE buildings DROP COLUMN IF EXISTS landuse_group; +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U010', 'Agriculture And Fisheries', 'order', NULL); -CREATE TYPE landuse_group AS ENUM ( -'Agriculture-Agriculture And Fisheries', -'Fisheries-Agriculture And Fisheries', -'Medical and health care services-Community Services', -'Places of worship-Community Services', -'Education-Community Services', -'Community services-Community Services', -'Defence-Defence', -'Managed forest-Forestry', -'Un-managed forest-Forestry', -'Manufacturing-Industry And Business', -'Offices-Industry And Business', -'Storage-Industry And Business', -'Wholesale distribution-Industry And Business', -'Mineral workings and quarries-Minerals', -'Mixed', -'Outdoor amenity and open spaces-Recreation And Leisure', -'Amusement and show places-Recreation And Leisure', -'Libraries, museums and galleries-Recreation And Leisure', -'Sports facilities and grounds-Recreation And Leisure', -'Holiday parks and camps-Recreation And Leisure', -'Allotments and city farms-Recreation And Leisure', -'Dwellings-Residential', -'Hotels, boarding and guest houses-Residential', -'Residential institutions-Residential', -'Shops-Retail', -'Financial and professional services-Retail', -'Restaurants and cafes-Retail', -'Public houses and bars-Retail', -'Transport tracks and ways-Transport', -'Transport terminals and interchanges-Transport', -'Car parks-Transport', -'Vehicle storage-Transport', -'Goods and freight terminals-Transport', -'Waterways-Transport', -'Unused land-Unused Land', -'Energy production and distribution-Utilities And Infrastructure', -'Water storage and treatment-Utilities And Infrastructure', -'Refuse disposal-Utilities And Infrastructure', -'Cemeteries and crematoria-Utilities And Infrastructure', -'Post and telecommunications-Utilities And Infrastructure', -'Vacant-Vacant And Derelict', -'Derelict-Vacant And Derelict', -'None' -); -ALTER TABLE buildings ADD COLUMN IF NOT EXISTS landuse_group landuse_group DEFAULT 'None'; +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U080', 'Community Services', 'order', NULL); +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U120', 'Defence', 'order', NULL); --- Land class NLUD order, can only be one -ALTER TABLE buildings DROP COLUMN IF EXISTS landuse_class; +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U020', 'Forestry', 'order', NULL); -CREATE TYPE landuse_class AS ENUM ( - "Car storage place - Car parks", - "Community and health services - Community services", - "Advertising hoarding - Community services", - "Advertising places - Community services", - "Approved school - Community services", - "Arbitration court - Community services", - "Borstal institution - Community services", - "Church hall - Community services", - "Civil Defense center - Community services", - "Club meeting place - Community services", - "Coastguard station - Community services", - "Communication places - Community services", - "Community center - Community services", - "Community protection services - Community services", - "Courts - Community services", - "Detention places - Community services", - "Fire station - Community services", - "Justice administration places - Community services", - "Law court - Community services", - "Life boat station - Community services", - "Police station - Community services", - "Prison - Community services", - "Prison rehabilitation center - Community services", - "Protection places - Community services", - "Public bath - Community services", - "Public convenience - Community services", - "Remand center - Community services", - "Remand classifying center - Community services", - "Remand home - Community services", - "Sanitation places - Community services", - "Social meeting places - Community services", - "Tribunal place - Community services", - "Building converted to more than one dwelling - Dwellings", - "Bungalow - Dwellings", - "Detached house - Dwellings", - "Maisonette - Dwellings", - "Movable dwelling site - Dwellings", - "Non residential plus single dwelling - Dwellings", - "Purpose built block of flats - Dwellings", - "Residential caravan site - Dwellings", - "Self contained residences - Dwellings", - "Semi detached house - Dwellings", - "Terraced house - Dwellings", - "Adult education center - Education", - "Archaeological site - Education", - "College of further education - Education", - "College of technology - Education", - "Day nursery school - Education", - "Education places - Education", - "Infant school - Education", - "Junior school - Education", - "Middle school - Education", - "Nature reserve - Education", - "Nature reserves and sanctuaries - Education", - "Nursery school - Education", - "Observatory - Education", - "Polytechnic - Education", - "Pre primary schools - Education", - "Primary schools - Education", - "Research establishments - Education", - "Research places - Education", - "Secondary school - Education", - "Secondary schools - Education", - "Site of special scientific interest - Education", - "Sixth form college - Education", - "Special school - Education", - "Specialized, higher and further education centers - Education", - "Teacher training college - Education", - "Technical college - Education", - "University teaching establishment - Education", - "Bank - Financial and professional services", - "Betting office - Financial and professional services", - "Building society office - Financial and professional services", - "Financial service offices - Financial and professional services", - "Insurance office - Financial and professional services", - "Boarding house - Hotels, boarding and guest houses", - "Group residences - Hotels, boarding and guest houses", - "Hotel - Hotels, boarding and guest houses", - "Residential club - Hotels, boarding and guest houses", - "Rooming house - Hotels, boarding and guest houses", - "Art gallery - Libraries, museums and galleries", - "Galleries - Libraries, museums and galleries", - "Lending library - Libraries, museums and galleries", - "Libraries - Libraries, museums and galleries", - "Libraries, museums and galleries - Libraries, museums and galleries", - "Museum - Libraries, museums and galleries", - "Reference - Libraries, museums and galleries", - "Ambulance station - Medical and health care services", - "Ante natal and post natal clinic - Medical and health care services", - "Artificial limb and appliance hospital - Medical and health care services", - "Auxiliary service centers medical - Medical and health care services", - "Blood transfusion center - Medical and health care services", - "Convalescent home - Medical and health care services", - "Counselling agency - Medical and health care services", - "Counselling places - Medical and health care services", - "Dental hospital - Medical and health care services", - "Dentist's surgery and consulting room - Medical and health care services", - "Dispensary - Medical and health care services", - "Doctor's surgery and consulting room - Medical and health care services", - "Ear, nose and throat hospital - Medical and health care services", - "Eye hospital - Medical and health care services", - "Eye clinic and optician's surgery and consulting room - Medical and health care services", - "Family planning clinic - Medical and health care services", - "Foot clinic and chiropodist's surgery and consulting room - Medical and health care services", - "Forensic medicine center - Medical and health care services", - "General hospital - Medical and health care services", - "Geriatric hospital - Medical and health care services", - "Health care places - Medical and health care services", - "Health center - Medical and health care services", - "Hearing aid center - Medical and health care services", - "Hospitals - Medical and health care services", - "Isolation hospital - Medical and health care services", - "Maternity hospital - Medical and health care services", - "Medical auxiliary service centers - Medical and health care services", - "Medical diagnosis and treatment centers - Medical and health care services", - "Medical research establishments - Medical and health care services", - "Medical research laboratory - Medical and health care services", - "Mental hospital - Medical and health care services", - "Mental clinic - Medical and health care services", - "Nervous disorders clinic - Medical and health care services", - "Occupational therapy and physiotherapy clinic - Medical and health care services", - "Orthopaedic hospital - Medical and health care services", - "Orthopaedic and rheumatic clinic - Medical and health care services", - "Radiography center - Medical and health care services", - "Surgeon's surgery and consulting room - Medical and health care services", - "Places of worship - Places of worship", - "Public house - Public houses, bars and nightclubs", - "Refuse disposal places - Refuse disposal", - "Refuse disposal plant - Refuse disposal", - "Refuse tip - Refuse disposal", - "Residences - Residential", - "Barracks - Residential institutions", - "Children's home - Residential institutions", - "Communal homes - Residential institutions", - "Handicapped and disabled people's home - Residential institutions", - "Non medical care places - Residential institutions", - "Non medical homes - Residential institutions", - "Old people's home - Residential institutions", - "Residential retreat - Residential institutions", - "School boarding house - Residential institutions", - "Staff hostel - Residential institutions", - "Catering places - Restaurants and cafes", - "Restaurant - Restaurants and cafes", - "Catering service places - Retail", - "Retail distribution places - Retail", - "Retail distribution and servicing places - Retail", - "Baker's shop - Shops", - "Beauty salon - Shops", - "Boot and shoe repair establishment - Shops", - "Butcher's shop - Shops", - "Caravan sales place - Shops", - "Cash and carry store - Shops", - "Cats meat shop - Shops", - "Clothing and footwear shop - Shops", - "Confectionery, tobacco and newspaper shop - Shops", - "Dairy shop - Shops", - "Department store - Shops", - "Dry cleaning and clothing repair establishment - Shops", - "Duplicating and copying center - Shops", - "Electricity showroom - Shops", - "Fish shop - Shops", - "Food and drink shops - Shops", - "Fried fish shop - Shops", - "Frozen food shop - Shops", - "Gas showroom - Shops", - "General stores - Shops", - "Green grocer's shop - Shops", - "Grocery and provision - Shops", - "Hairdresser's shop - Shops", - "Hot food shop - Shops", - "Household goods shop - Shops", - "Household goods shops and showrooms - Shops", - "Hybrid shops and stores - Shops", - "Hypermarket - Shops", - "Launderette - Shops", - "Laundry (cleaning only) - Shops", - "Laundry, cleaning and repairing shop (receiving) - Shops", - "Maintenance and repair places - Shops", - "Motor vehicle dealer display area - Shops", - "Motor vehicle goods shops and filling stations - Shops", - "Motor vehicle maintenance and repair places - Shops", - "Motor vehicle repair garage - Shops", - "Motor vehicle sales - Shops", - "Motor vehicle spare parts and accessories - Shops", - "Motor vehicle testing station - Shops", - "Off license - Shops", - "Personal and household goods repair and cleaning places - Shops", - "Pet animal and bird shop - Shops", - "Petrol and oil filling station - Shops", - "Photographic service shop - Shops", - "Post office - Shops", - "Retail market place - Shops", - "Supermarket - Shops", - "Ticket agency - Shops", - "Travel agency - Shops", - "Tripe shop - Shops", - "Tire retailing and fitting place - Shops", - "Undertaker - Shops", - "Unused buildings - . Previously developed land", - "Agricultural research establishment - Agriculture", - "Agriculture and fisheries places - Agriculture", - "Animal artificial insemination center - Agriculture", - "Animal boarding establishment - Agriculture", - "Animal breeding places - Agriculture", - "Animal clipping and manicure establishment - Agriculture", - "Animal dipping place - Agriculture", - "Animal living places - Agriculture", - "Animal milking places - Agriculture", - "Animal product processing places - Agriculture", - "Animal product waste store - Agriculture", - "Animal product waste treatment places - Agriculture", - "Animal products waste handling places - Agriculture", - "Animal rearing places - Agriculture", - "Animal service places - Agriculture", - "Animal service places - Agriculture", - "Animal shearing places - Agriculture", - "Animal slaughtering places - Agriculture", - "Animal stunning and killing places - Agriculture", - "Animal welfare places - Agriculture", - "Arable farm places - Agriculture", - "Bedding and waste removal - Agriculture", - "Blacksmith premises - Agriculture", - "Crop conditioning grading and storage places - Agriculture", - "Crop processing places - Agriculture", - "Cultivated places 6 - Agriculture", - "Egg grading place - Agriculture", - "Feed handling places - Agriculture", - "Feed preparation place - Agriculture", - "Feed storage place - Agriculture", - "Feeding - Agriculture", - "Fish sorting place - Agriculture", - "Glass house - Agriculture", - "Green forage crops place - Agriculture", - "Green forage crops store - Agriculture", - "Horticultural places - Agriculture", - "Isolation (animal living place) - Agriculture", - "Knackering place - Agriculture", - "Milk extraction place - Agriculture", - "Milk treatment place - Agriculture", - "Mill and mix building - Agriculture", - "Packing and sorting (crop processing place) - Agriculture", - "Packing places (animal products) - Agriculture", - "Parturition place - Agriculture", - "Permanent pasture - Agriculture", - "Processing place (animal slaughtering place) - Agriculture", - "Pulse crops place - Agriculture", - "Pulse crops store - Agriculture", - "Quarantine place, animal - Agriculture", - "Root crops place - Agriculture", - "Root crops store - Agriculture", - "Soft fruit place - Agriculture", - "Vegetable (crop conditioning and storage) - Agriculture", - "Veterinary hospital - Agriculture", - "Veterinary surgery - Agriculture", - "Weighing place - Agriculture", - "Wool grading place - Agriculture", - "Wool removal place - Agriculture", - "Amusement places - Amusement and show places", - "Aquarium - Amusement and show places", - "Bingo club - Amusement and show places", - "Broadcasting, filming and sound recording studio - Amusement and show places", - "Children's playground - Amusement and show places", - "Cinema - Amusement and show places", - "Circus - Amusement and show places", - "Concert arena - Amusement and show places", - "Countryside interpretation center - Amusement and show places", - "Dance hall - Amusement and show places", - "Display arena - Amusement and show places", - "Fun fair - Amusement and show places", - "Gaming club - Amusement and show places", - "Night club - Amusement and show places", - "Show places - Amusement and show places", - "Theatre - Amusement and show places", - "Cemetery - Cemeteries and crematoria", - "Chapel of rest - Cemeteries and crematoria", - "Crematorium - Cemeteries and crematoria", - "Dead bodies disposal places - Cemeteries and crematoria", - "Dead bodies storage places - Cemeteries and crematoria", - "Mortuary - Cemeteries and crematoria", - "Defense establishments - Defense", - "Defense training places - Defense", - "Abandoned building - Derelict", - "Ruined building - Derelict", - "Waste heap or tip - Derelict", - "District heating places - Energy production and distribution", - "District heating plant - Energy production and distribution", - "Electricity cableway - Energy production and distribution", - "Electricity distribution places - Energy production and distribution", - "Electricity production places - Energy production and distribution", - "Electricity supply places - Energy production and distribution", - "Electricity transformer station - Energy production and distribution", - "Gas distribution places - Energy production and distribution", - "Gas holder - Energy production and distribution", - "Gas pressure control station - Energy production and distribution", - "Gas production and storage places - Energy production and distribution", - "Gas supply places - Energy production and distribution", - "Gas works - Energy production and distribution", - "Hydro electricity generating station - Energy production and distribution", - "Oil pumping station - Energy production and distribution", - "Pipeline - Energy production and distribution", - "Thermal electricity generating station - Energy production and distribution", - "Fish farm - Fisheries", - "Fishery places - Fisheries", - "Hatchery - Fisheries", - "Net fishery place - Fisheries", - "Aerial ropeway - Goods and freight handling", - "Air freight terminal - Goods and freight handling", - "Container depot - Goods and freight handling", - "Conveyor - Goods and freight handling", - "Customs depot - Goods and freight handling", - "Docks - Goods and freight handling", - "Goods handling places - Goods and freight handling", - "Lift - Goods and freight handling", - "Lorry transhipment park - Goods and freight handling", - "Mechanical handling places - Goods and freight handling", - "Railway goods siding - Goods and freight handling", - "Railway goods yard - Goods and freight handling", - "Railway sorting depot - Goods and freight handling", - "Terminals and interchanges for goods - Goods and freight handling", - "Youth hostel - Holiday camps", - "Telegraph and telephone apparatus and equipment manufacturing - Manufacturing", - "Abrasives and other building materials manufacturing place - Manufacturing", - "Aerospace equipment manufacturing or repairing place - Manufacturing", - "Agricultural machinery manufacturing place - Manufacturing", - "Aluminum and aluminum alloy manufacturing - Manufacturing", - "Animal and poultry food manufacturing place - Manufacturing", - "Bacon curing, meat and fish product manufacturing place - Manufacturing", - "Bedding and soft furnishings manufacturing place - Manufacturing", - "Biscuit manufacturing - Manufacturing", - "Bolts, nuts, screws, rivets etc. manufacturing place - Manufacturing", - "Bread and flour confectionery manufacturing place - Manufacturing", - "Brewery - Manufacturing", - "Bricks, fireclay and refractory goods manufacturing place - Manufacturing", - "Bricks, pottery, glass, cement manufacturing places - Manufacturing", - "Brushes and brooms manufacturing place - Manufacturing", - "Can and metal box manufacturing place - Manufacturing", - "Carpet manufacturing place - Manufacturing", - "Cement manufacturing place - Manufacturing", - "Chemical and allied industries manufacturing places - Manufacturing", - "Clothing and footwear manufacturing places 5C - Manufacturing", - "Coal and petroleum processing places - Manufacturing", - "Coal, oil and metal processing places - Manufacturing", - "Cocoa, chocolate and sugar confectionery manufacturing place - Manufacturing", - "Coke ovens and solid fuel manufacturing place - Manufacturing", - "Construction and demolition site - Manufacturing", - "Construction and earth moving equipment manufacturing place - Manufacturing", - "Construction places - Manufacturing", - "Construction places - Manufacturing", - "Copper, brass and other copper alloy manufacturing place - Manufacturing", - "Cutlery and plated tableware manufacturing place - Manufacturing", - "Dresses, lingerie, infants wear etc. manufacturing place 5C - Manufacturing", - "Dyestuffs and pigments manufacturing place - Manufacturing", - "Electrical engineering places - Manufacturing", - "Electrical machinery manufacturing place - Manufacturing", - "Electronic computers manufacturing place - Manufacturing", - "Engineering places - Manufacturing", - "Explosives and fireworks manufacturing place - Manufacturing", - "Fertilizer manufacturing place - Manufacturing", - "Food, drink and tobacco manufacturing place - Manufacturing", - "Footwear manufacturing place - Manufacturing", - "Fruit and vegetable product manufacturing place - Manufacturing", - "Fur goods manufacturing place - Manufacturing", - "Furniture and upholstery manufacturing place - Manufacturing", - "General chemical manufacturing place - Manufacturing", - "Glass manufacturing place - Manufacturing", - "Grain mill - Manufacturing", - "Hats, cap and millinery manufacturing place - Manufacturing", - "Hosiery and other knitted goods manufacturing place - Manufacturing", - "Industrial research laboratory - Manufacturing", - "Industrial services equipment manufacturing place - Manufacturing", - "Instrument engineering places - Manufacturing", - "Insulated wires and cables manufacturing place - Manufacturing", - "Iron and steel manufacturing place - Manufacturing", - "Jeweler and precious metal manufacturing place - Manufacturing", - "Jute manufacturing place - Manufacturing", - "Knitted goods manufacturing place - Manufacturing", - "Lace manufacturing place - Manufacturing", - "Lead manufacturing place - Manufacturing", - "Leather (tanning and dressing) and fellmongery place - Manufacturing", - "Leather and fur goods manufacturing places - Manufacturing", - "Leather goods manufacturing place - Manufacturing", - "Linoleum, plastics floor covering, leather cloth manufacturing place - Manufacturing", - "Locomotives and railway track equipment manufacturing place - Manufacturing", - "Lubricating oil and grease manufacturing place - Manufacturing", - "Made up textile manufacturing place - Manufacturing", - "Man made fiber production manufacturing place - Manufacturing", - "Manufacturing research establishments - Manufacturing", - "Manufacturing storage place - Manufacturing", - "Manufacturing storage places - Manufacturing", - "Manufacturing waste disposal places - Manufacturing", - "Manufacturing waste tip - Manufacturing", - "Mechanical engineering places - Manufacturing", - "Mechanical handling equipment manufacturing place - Manufacturing", - "Metal processing places (basic forms) - Manufacturing", - "Metal working machine tools manufacturing place - Manufacturing", - "Milk and milk product manufacturing place - Manufacturing", - "Mineral oil refinery - Manufacturing", - "Miscellaneous goods manufacturing place - Manufacturing", - "Miscellaneous stationers goods manufacturing place - Manufacturing", - "Miscellaneous wood and cork manufacturing place - Manufacturing", - "Motor cycle, tricycle and pedal cycle manufacturing place - Manufacturing", - "Motor vehicle manufacturing place - Manufacturing", - "Narrow fabric manufacturing place - Manufacturing", - "Office machinery manufacturing place - Manufacturing", - "Ordnance and small arms manufacturing place - Manufacturing", - "Overalls and men's shirts and underwear manufacturing place 5C - Manufacturing", - "Paint manufacturing place - Manufacturing", - "Paper and board manufacturing place - Manufacturing", - "Paper, printing and publishing works - Manufacturing", - "Periodical and newspaper printing and publishing works - Manufacturing", - "Pharmaceutical chemicals and preparation manufacturing place - Manufacturing", - "Pottery manufacturing place - Manufacturing", - "Prime movers manufacturing place - Manufacturing", - "Pumps, valves and compressor manufacturing place - Manufacturing", - "Radio and electronic capital goods manufacturing place - Manufacturing", - "Radio, radar and electronic capital goods manufacturing place - Manufacturing", - "Railway carriages and wagons and trams manufacturing place - Manufacturing", - "Rope, twine and net manufacturing place - Manufacturing", - "Rubber goods manufacturing place - Manufacturing", - "Shipbuilding and marine engineering place - Manufacturing", - "Shop and office fittings manufacturing place - Manufacturing", - "Small tools, implements and gauges manufacturing place - Manufacturing", - "Soft drinks manufacturing place - Manufacturing", - "Stationery manufacturing place - Manufacturing", - "Sugar refinery - Manufacturing", - "Surgical instruments and appliances manufacturing place - Manufacturing", - "Synthetic resins, plastics and synthetic rubber manufacturing - Manufacturing", - "Tailored outerwear manufacturing place - Manufacturing", - "Textile finishing place - Manufacturing", - "Textile machinery and accessories manufacturing place - Manufacturing", - "Textile manufacturing places - Manufacturing", - "Timber and furniture works - Manufacturing", - "Timber furniture, paper, printing and publishing works - Manufacturing", - "Timber works - Manufacturing", - "Tobacco manufacturing place - Manufacturing", - "Toilet preparation manufacturing place - Manufacturing", - "toys, games, children's carriages and sports equipment - Manufacturing", - "Vegetable, animal oil and fat manufacturing place - Manufacturing", - "Vehicle engineering places - Manufacturing", - "Watches and clocks manufacturing place - Manufacturing", - "Weatherproof outerwear manufacturing place - Manufacturing", - "Weaving of cotton, linen and man made fibers manufacturing place - Manufacturing", - "Wheeled tractor manufacturing place - Manufacturing", - "Wire manufacturing place - Manufacturing", - "Wooden containers and baskets manufacturing place - Manufacturing", - "Woolen and worsted manufacturing place - Manufacturing", - "Packaging products of paper and associated materials - Manufacturing", - "Broadcast receiving and sound reproducing equipment - Manufacturing", - "Soap, detergent and fat splitting and distillation manufacturing - Manufacturing", - "Photographic and document copying equipment manufacturing - Manufacturing", - "Scientific and industrial instruments and systems manufacturing - Manufacturing", - "Spinning and doubling (cotton and flax systems) manufacturing - Manufacturing", - "Electric appliances primarily for domestic use manufacturing - Manufacturing", - "Clothing, textiles, leather, footwear and fur goods manufacturing - Manufacturing", - "Business discussion places - Offices", - "Business meeting places - Offices", - "Business meeting places - Offices", - "Central government administration office - Offices", - "General offices - Offices", - "Local government administration office - Offices", - "Manufacturing administration office - Offices", - "Offices OF - Offices", - "Professional services office - Offices", - "Studio - Offices", - "Aircraft hangar - Other vehicle storage", - "Bus depot - Other vehicle storage", - "Coach depot - Other vehicle storage", - "Long stay lorry park - Other vehicle storage", - "Railway sidings - Other vehicle storage", - "Ancient monument - Outdoor amenity and open spaces", - "Direction finding places - Post and telecommunications", - "Direction finding transmitter - Post and telecommunications", - "Navigational light beacon - Post and telecommunications", - "Postal service places - Post and telecommunications", - "Postal service, signaling and telecommunications places - Post and telecommunications", - "Postal sorting depot - Post and telecommunications", - "Radar beacon - Post and telecommunications", - "Radar places - Post and telecommunications", - "Radar station - Post and telecommunications", - "Radio and television mast - Post and telecommunications", - "Radio station - Post and telecommunications", - "Satellite communication station - Post and telecommunications", - "Signaling station - Post and telecommunications", - "Telephone cableway - Post and telecommunications", - "Telephone exchange - Post and telecommunications", - "Telephone kiosk - Post and telecommunications", - "Television and radio broadcasting places - Post and telecommunications", - "Television station - Post and telecommunications", - "Amenity, amusement and show places - Recreation and leisure", - "Recreation and leisure places - Recreation and leisure", - "Animal training and competing places - Sports facilities", - "Athletic games arenas - Sports facilities", - "Athletic ground - Sports facilities", - "Badminton court - Sports facilities", - "Ball game courses - Sports facilities", - "Boating facilities - Sports facilities", - "Combative sports place - Sports facilities", - "Cycling circuit - Sports facilities", - "Dog racing track - Sports facilities", - "Dog trials area - Sports facilities", - "Golf driving range - Sports facilities", - "Gymnasium - Sports facilities", - "Hockey ground - Sports facilities", - "Horse show jumping, dressage and trotting arena - Sports facilities", - "Horse training area - Sports facilities", - "Ice rink - Sports facilities", - "Miniature golf course - Sports facilities", - "Motor vehicle racing track - Sports facilities", - "Rock climbing - Sports facilities", - "Roller skating rink - Sports facilities", - "Rowing water - Sports facilities", - "Rugby football ground - Sports facilities", - "Sailing - Sports facilities", - "Small arms range - Sports facilities", - "Squash court - Sports facilities", - "Swimming and bathing - Sports facilities", - "Swimming baths - Sports facilities", - "Target shooting places - Sports facilities", - "Ten pin bowling alley - Sports facilities", - "Water recreation places - Sports facilities", - "Water skiing place - Sports facilities", - "Water sport places - Sports facilities", - "Watercraft places - Sports facilities", - "Agricultural machinery store - Storage", - "Builders yard - Storage", - "Building equipment store - Storage", - "Bulk material stores - Storage", - "Cleaning materials store - Storage", - "Engineering equipment store - Storage", - "Equipment stores - Storage", - "Furniture depository - Storage", - "General goods store - Storage", - "Industrial and office machinery store - Storage", - "Material stores - Storage", - "Refrigerated store - Storage", - "Sports equipment store - Storage", - "Storage - Storage", - "Storage places for vehicles - Transport", - "Transport tracks and places - Transport", - "Aerial ropeway passenger terminal - Transport terminals and interchanges", - "Air passenger terminal - Transport terminals and interchanges", - "Airport - Transport terminals and interchanges", - "Bus station - Transport terminals and interchanges", - "Bus stop - Transport terminals and interchanges", - "Car park - Transport terminals and interchanges", - "Coach station - Transport terminals and interchanges", - "Land transport places - Transport terminals and interchanges", - "Railway station - Transport terminals and interchanges", - "Ship passenger terminal - Transport terminals and interchanges", - "Terminals and interchanges for people - Transport terminals and interchanges", - "Utility services - Utilities and infrastructure", - "Vacant building - Vacant", - "Sewage disposal places - Water storage and treatment", - "Sewage draining places - Water storage and treatment", - "Sewage farm - Water storage and treatment", - "Sewage pumping station - Water storage and treatment", - "Sewage treatment places - Water storage and treatment", - "Sewage treatment works - Water storage and treatment", - "Water distribution places - Water storage and treatment", - "Water extraction places - Water storage and treatment", - "Water intake from rivers or streams - Water storage and treatment", - "Water intake from springs - Water storage and treatment", - "Water intake from underground sources - Water storage and treatment", - "Water pumping station - Water storage and treatment", - "Water storage and treatment places - Water storage and treatment", - "Water supply places - Water storage and treatment", - "Water tower - Water storage and treatment", - "Water treatment works - Water storage and treatment", - "Boatyard - Waterways", - "Mooring - Waterways", - "Storage places for water craft - Waterways", - "Water tracks - Waterways", - "Water transport places - Waterways", - "Water transport tracks - Waterways", - "Agricultural machinery dealer's place - Wholesale distribution", - "Builders merchant's place - Wholesale distribution", - "Bulk dealing places - Wholesale distribution", - "Coal and oil dealer's place - Wholesale distribution", - "Corn, seed and agricultural supplies dealer's place - Wholesale distribution", - "Dealing in industrial materials, machinery and livestock places - Wholesale distribution", - "Food and drink wholesaling places - Wholesale distribution", - "Grocery and provisions confectionery and drinks wholesaling - Wholesale distribution", - "Hides, skin and leather dealer's place - Wholesale distribution", - "Horses and livestock dealer - Wholesale distribution", - "Horses and livestock dealing places - Wholesale distribution", - "Industrial materials and other machinery dealing places - Wholesale distribution", - "Petroleum products wholesaling place - Wholesale distribution", - "Scrap and waste dealer - Wholesale distribution", - "Timber dealer's place - Wholesale distribution", - "Wholesale distribution places - Wholesale distribution" -); -ALTER TABLE buildings ADD COLUMN IF NOT EXISTS landuse_class landuse_class DEFAULT 'None'; +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U100', 'Industry And Business', 'order', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U030', 'Minerals', 'order', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U040', 'Recreation And Leisure', 'order', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U070', 'Residential', 'order', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U090', 'Retail', 'order', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U050', 'Transport', 'order', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U130', 'Unused Land', 'order', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U060', 'Utilities And Infrastructure', 'order', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U110', 'Vacant And Derelict', 'order', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U011', 'Agriculture', 'group', 'U010'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U012', 'Fisheries', 'group', 'U010'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U021', 'Managed forest', 'group', 'U020'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U022', 'Un-managed forest', 'group', 'U020'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U031', 'Mineral workings and quarries', 'group', 'U030'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U041', 'Outdoor amenity and open spaces', 'group', 'U040'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U042', 'Amusement and show places', 'group', 'U040'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U043', 'Libraries, museums and galleries', 'group', 'U040'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U044', 'Sports facilities and grounds', 'group', 'U040'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U045', 'Holiday parks and camps', 'group', 'U040'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U046', 'Allotments and city farms', 'group', 'U040'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U051', 'Transport tracks and ways', 'group', 'U050'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U054', 'Transport terminals and interchanges', 'group', 'U050'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U053', 'Car parks', 'group', 'U050'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U051', 'Vehicle storage', 'group', 'U050'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U055', 'Goods and freight terminals', 'group', 'U050'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U056', 'Waterways', 'group', 'U050'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U061', 'Energy production and distribution', 'group', 'U060'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U062', 'Water storage and treatment', 'group', 'U060'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U063', 'Refuse disposal', 'group', 'U060'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U064', 'Cemeteries and crematoria', 'group', 'U060'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U065', 'Post and telecommunications', 'group', 'U060'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U071', 'Dwellings', 'group', 'U070'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U072', 'Hotels, boarding and guest houses', 'group', 'U070'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U073', 'Residential institutions', 'group', 'U070'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U081', 'Medical and health care services', 'group', 'U080'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U082', 'Places of worship', 'group', 'U080'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U083', 'Education', 'group', 'U080'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U084', 'Community services', 'group', 'U080'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U091', 'Shops', 'group', 'U090'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U092', 'Financial and professional services', 'group', 'U090'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U093', 'Restaurants and cafes', 'group', 'U090'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U094', 'Public houses, bars and nightclubs', 'group', 'U090'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U101', 'Manufacturing', 'group', 'U100'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U102', 'Offices', 'group', 'U100'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U103', 'Storage', 'group', 'U100'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U104', 'Wholesale distribution', 'group', 'U100'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U111', 'Vacant', 'group', 'U110'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U112', 'Derelict', 'group', 'U110'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U121', 'Defence', 'group', 'U120'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('U131', 'Unused land', 'group', 'U130'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL02A -A', 'Abandoned building', 'class', 'U112'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA06A -A', 'Abrasives and other building materials manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01E -A', 'Access road', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01F -A', 'Adult education centre', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM06A -A', 'Advertising hoarding', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM06A', 'Advertising places', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR05A -A', 'Aerial ropeway', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02A -A', 'Aerial ropeway passenger terminal', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04E -A', 'Aerospace equipment manufacturing or repairing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01D-A', 'Aggregate and stone handling installation', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST01A -A', 'Agricultural machinery store', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01B -A', 'Agricultural machinery dealer�s place', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04A -A', 'Agricultural machinery manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG05A -A', 'Agricultural research establishment', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG', 'Agriculture and fisheries places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02B -A', 'Air freight terminal', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02A -B', 'Air passenger terminal', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02C-A', 'Aircraft hangar', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02A -C', 'Airport', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01E -B', 'All purpose road', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B -A', 'Allotment gardens', 'class', 'U046'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA01B -A', 'Aluminium and aluminium alloy manufacturing', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01B -A', 'Ambulance station', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01', 'Amenity, amusement and show places', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01C', 'Amusement places', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR04A -A', 'Anchorage', 'class', 'U056'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01B -A', 'Ancient monument', 'class', 'U041'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -A', 'Animal and poultry food manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG01A -A', 'Animal artificial insemination centre', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG01B -A', 'Animal boarding establishment', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02A', 'Animal breeding places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG01B -B', 'Animal clipping and manicure establishment', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG01A -B', 'Animal dipping place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02', 'Animal living places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03A', 'Animal milking places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03', 'Animal product processing places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03F -A', 'Animal product waste store', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03F -B', 'Animal product waste treatment places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03F', 'Animal products waste handling places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02B', 'Animal rearing places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG01A', 'Animal service places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG01', 'Animal service places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03B', 'Animal shearing places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03C', 'Animal slaughtering places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03C-A', 'Animal stunning and killing places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03 I', 'Animal training and competing places', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG01B', 'Animal welfare places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -A', 'Ante natal and post natal clinic', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05A -A', 'Approved school', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01C-A', 'Aquarium', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06A', 'Arable farm places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM08A -A', 'Arbitration court', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED02A -A', 'Archaeological site', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03G-A', 'Archery range', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE02C-A', 'Art gallery', 'class', 'U043'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01C-A', 'Artificial limb and appliance hospital', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03A -A', 'Association football ground', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03E', 'Athletic game courses', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03D', 'Athletic games arenas', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03D-A', 'Athletic ground', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01B', 'Auxiliary service centres medical', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -B', 'Bacon curing, meat and fish product manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03B -A', 'Badminton court', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -A', 'Baker�s shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03C', 'Ball game courses', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03B', 'Ball game greens and courts', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03A', 'Ball game pitches and grounds', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF02A -A', 'Bank', 'class', 'U092'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01B -A', 'Barracks', 'class', 'U073'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03A -B', 'Baseball ground', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01A -A', 'Beach or sand dune', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -A', 'Beauty salon', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07A -A', 'Bedding and soft furnishings manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02B -A', 'Bedding and waste removal', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01C-B', 'Betting office', 'class', 'U092'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01C-C', 'Bingo club', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -C', 'Biscuit manufacturing', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG01A -C', 'Blacksmith premises', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01B -B', 'Blood transfusion centre', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01A -A', 'Boarding house', 'class', 'U072'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04B -A', 'Boating facilities', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR04A -B', 'Boatyard', 'class', 'U056'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03E -A', 'Bobsleigh course', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04F -D', 'Bolts, nuts, screws, rivets etc. manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT02B -A', 'Boot and shoe repair establishment', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05A -B', 'Borstal institution', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01A -A', 'Botanical garden', 'class', 'U041'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03B -B', 'Bowling green', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01F -A', 'Branch line', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -D', 'Bread and flour confectionery manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -E', 'Brewery', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA06A -B', 'Bricks, fireclay and refractory goods manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA06A', 'Bricks, pottery, glass, cement manufacturing places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01C-A', 'Bridleway', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04C-A', 'Broadcast receiving and sound reproducing equipment manufacturing', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01D-A', 'Broadcasting, filming and sound recording studio', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA08A -A', 'Brushes and brooms manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01A -C', 'Builders merchant''s place', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST02A -A', 'Builders yard', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS02A -A', 'Building converted to more than one dwelling', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST01A -B', 'Building equipment store', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF02A -B', 'Building society office', 'class', 'U092'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01A', 'Bulk dealing places', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST02A', 'Bulk material stores', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS02A -B', 'Bungalow', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02C-B', 'Bus depot', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01D-A', 'Bus only way', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02A -D', 'Bus station', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02A -E', 'Bus stop', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01D-B', 'Bus way', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF03A -A', 'Business discussion places', 'class', 'U102'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF03A', 'Business meeting places', 'class', 'U102'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF03', 'Business meeting places', 'class', 'U102'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -B', 'Butcher''s shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE05A -A', 'Camping site', 'class', 'U045'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04F -A', 'Can and metal box manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01C-A', 'Canal (unused)', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR03A -A', 'Canal', 'class', 'U056'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04B -B', 'Canoeing water', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02A -F', 'Car park', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02C-C', 'Car storage place', 'class', 'U053'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01D-A', 'Caravan sales place', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -A', 'Carpet manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01F -A', 'Cash and carry store', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT03B', 'Catering places', 'class', 'U093'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT03', 'Catering service places', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -C', 'Cats meat shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03F -A', 'Caving place', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA06A -C', 'Cement manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT07B -A', 'Cemetery', 'class', 'U064'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF01A -A', 'Central government administration office', 'class', 'U102'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06A -A', 'Cereal crops', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG07A -A', 'Cereal crops store', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -A', 'Chalk working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT07A -A', 'Chapel of rest', 'class', 'U064'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA03A', 'Chemical and allied industries manufacturing places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM04A -A', 'Children''s home', 'class', 'U073'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01C-D', 'Children''s playground', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -B', 'China clay working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01C-A', 'China clay waste tip and settlement lagoon', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM06B -A', 'Church hall', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01D-B', 'Cinema', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01D-C', 'Circus', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05B -A', 'Civil Defence centre', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -C', 'Clay and shale working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST02A -B', 'Cleaning materials store', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01B -A', 'Cleared site', 'class', 'U111'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01A -B', 'Cliff or natural outcrop', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03F', 'Climbing, rambling and caving places', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05C', 'Clothing and footwear manufacturing places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -C', 'Clothing and footwear shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05', 'Clothing, textiles, leather, footwear and fur goods manufacturing places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM06B -B', 'Club meeting place', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02C-D', 'Coach depot', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02A -G', 'Coach station', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -D', 'Coal mine working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01A -A', 'Coal and oil dealer''s place', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA01A', 'Coal and petroleum processing places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01D-B', 'Coal handling installation', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01C-B', 'Coal waste tip and settlement lagoon', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA01', 'Coal, oil and metal processing places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05B -B', 'Coastguard station', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -F', 'Cocoa, chocolate and sugar confectionery manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA01A -A', 'Coke ovens and solid fuel manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01F -B', 'College of further education', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01F -C', 'College of technology', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01B -A', 'Colliery headgear', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03D-B', 'Combative sports place', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01B', 'Communal homes', 'class', 'U073'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM06', 'Communication places', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM', 'Community and health services', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM06B -C', 'Community centre', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05', 'Community protection services', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01D-D', 'Concert arena', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -B', 'Confectionery, tobacco and newspaper shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG08B -A', 'Coniferous forest', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA09A -A', 'Construction and demolition site', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04A -B', 'Construction and earth moving equipment manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA09', 'Construction places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA09A', 'Construction places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02B -B', 'Container depot', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01D-A', 'Convalescent home', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR05A -B', 'Conveyor', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA01B -B', 'Copper, brass and other copper alloy manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG08B -B', 'Coppice', 'class', 'U021'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG08B -C', 'Coppice with standards', 'class', 'U021'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01A -B', 'Corn, seed and agricultural supplies dealer''s place', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM04B -A', 'Counselling agency', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM04B', 'Counselling places', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01A -B', 'Country park', 'class', 'U041'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01D-E', 'Countryside interpretation centre', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM08A', 'Courts', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT07B -B', 'Crematorium', 'class', 'U064'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03A -C', 'Cricket ground', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG07A', 'Crop conditioning grading and storage places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG07', 'Crop processing places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03B -C', 'Croquet lawn', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03 I -A', 'Cross country horse trial course', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03E -B', 'Cross country running course', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06', 'Cultivated places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR06A -A', 'Customs depot', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04F -B', 'Cutlery and plated tableware manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01B -A', 'Cycle track', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03H-A', 'Cycling circuit', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -D', 'Dairy shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01C-E', 'Dance hall', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01A -A', 'Day nursery school', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT07B', 'Dead bodies disposal places', 'class', 'U064'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT07A', 'Dead bodies storage places', 'class', 'U064'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01', 'Dealing in industrial materials, machinery and livestock places', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG08B -D', 'Deciduous forest', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('DF01', 'Defence establishments', 'class', 'U121'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('DF01A', 'Defence training places', 'class', 'U121'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01C-B', 'Dental hospital', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -B', 'Dentist''s surgery and consulting room', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01F -B', 'Department store', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS02A -C', 'Detached house', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05A', 'Detention places', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08F', 'Direction finding places', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08F -B', 'Direction finding transmitter', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -C', 'Dispensary', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01D-F', 'Display arena', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT06A', 'District heating places', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT06A -A', 'District heating plant', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01C-B', 'Dock (unused)', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02B -C', 'Docks', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -D', 'Doctor''s surgery and consulting room', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03 I -B', 'Dog racing track', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03 I -C', 'Dog trials area', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05C-A', 'Dresses, lingerie, infants wear etc. manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01C-B', 'Drovers way', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT02B -B', 'Dry cleaning and clothing repair establishment', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -D', 'Duplicating and copying centre', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS02A', 'Dwellings', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA03A -A', 'Dyestuffs and pigments manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01C-C', 'Ear, nose and throat hospital', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01', 'Education places', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03D-A', 'Egg grading place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04C-B', 'Electric appliances primarily for domestic use manufacturing places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04C', 'Electrical engineering places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04C-C', 'Electrical machinery manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01C-A', 'Electricity showroom', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT02B -A', 'Electricity cableway', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT02B', 'Electricity distribution places', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT02A', 'Electricity production places', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT02', 'Electricity supply places', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT02B -B', 'Electricity transformer station', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04C-D', 'Electronic computers manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST01A -C', 'Engineering equipment store', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04', 'Engineering places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST01A', 'Equipment stores', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA03A -B', 'Explosives and fireworks manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01C-D', 'Eye hospital', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -E', 'Eye clinic and optician''s surgery and consulting room', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06A -B', 'Fallow land', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01B -C', 'Family planning clinic', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03E', 'Feed handling places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03E -A', 'Feed preparation place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03E -B', 'Feed storage place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02B -B', 'Feeding', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA03A -C', 'Fertilizer manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF02A', 'Financial service offices', 'class', 'U092'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05B -C', 'Fire station', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -E', 'Fish shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02A -A', 'Fish farm', 'class', 'U012'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03D-B', 'Fish sorting place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG04A', 'Fishery places', 'class', 'U012'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B -B', 'Flower bed', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A', 'Food and drink shops', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH02A', 'Food and drink wholesaling places', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A', 'Food, drink and tobacco manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -F', 'Foot clinic and chiropodist''s surgery and consulting room', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01A -A', 'Footpath', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05C-B', 'Footwear manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01B -D', 'Forensic medicine centre', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG08B', 'Forestry places', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -F', 'Fried fish shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -G', 'Frozen food shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -G', 'Fruit and vegetable product manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG07A -B', 'Fruit crops', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01C-F', 'Fun fair', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05B -A', 'Fur goods manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07A -B', 'Furniture and upholstery manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST03A -A', 'Furniture depository', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE02C', 'Galleries', 'class', 'U043'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01C-G', 'Gaming club', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01A -C', 'Gardens', 'class', 'U041'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01C-B', 'Gas showroom', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT01B', 'Gas distribution places', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT01A -A', 'Gas holder', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT01B -A', 'Gas pressure control station', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT01A', 'Gas production and storage places', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT01', 'Gas supply places', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT01A -B', 'Gas works', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01C-E', 'General hospital', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA03A -D', 'General chemical manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST03A -B', 'General goods store', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF01A', 'General offices', 'class', 'U102'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -E', 'General stores', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01C-F', 'Geriatric hospital', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B -C', 'Glass house', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA06A -D', 'Glass manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03C-B', 'Golf course', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03C-A', 'Golf driving range', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR06', 'Goods handling places', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -H', 'Grain mill', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01A -C', 'Grass land', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG08A', 'Grazing places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06A -C', 'Green forage crops place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG07A -C', 'Green forage crops store', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -H', 'Green grocer''s shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -I', 'Grocery and provision', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH02A -A', 'Grocery and provisions confectionery and drinks wholesaling', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01', 'Group residences', 'class', 'U072'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03D-C', 'Gymnasium', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -E', 'Gypsum/Anhydrite working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -F', 'Hairdresser''s shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM04A -B', 'Handicapped and disabled people''s home', 'class', 'U073'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02A -B', 'Hatchery', 'class', 'U012'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05C-C', 'Hats, cap and millinery manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01', 'Health care places', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -G', 'Health centre', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -H', 'Hearing aid centre', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01A -D', 'Heath and moorland', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01B -B', 'Hides, skin and leather dealer''s place', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03A -D', 'Hockey ground', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE05A -B', 'Holiday camp site', 'class', 'U045'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE05A', 'Holiday camps', 'class', 'U045'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE05A -C', 'Holiday caravan site', 'class', 'U045'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B -D', 'Hop field', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03 I -D', 'Horse racing course', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03 I -E', 'Horse show jumping, dressage and trotting arena', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03 I -F', 'Horse training area', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01C-A', 'Horses and livestock dealer', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01C', 'Horses and livestock dealing places', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B', 'Horticultural places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -B', 'Hosiery and other knitted goods manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01C', 'Hospitals', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -J', 'Hot food shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01A -B', 'Hotel', 'class', 'U072'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01C-C', 'Household goods shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01C', 'Household goods shops and showrooms', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03J -A', 'Hunting place', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03J', 'Hunting and shooting places', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03A -E', 'Hurling or shinty grounds', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01F', 'Hybrid shops and stores', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT02A -A', 'Hydro electricity generating station', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01F -C', 'Hypermarket', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03D-D', 'Ice rink', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -F', 'Igneous rock working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST01A -D', 'Industrial and office machinery store', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01B', 'Industrial materials and other machinery dealing places', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA10A -A', 'Industrial research laboratory', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04A -C', 'Industrial services equipment manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01B -A', 'Infant school', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04B', 'Instrument engineering places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04C-E', 'Insulated wires and cables manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF02A -C', 'Insurance office', 'class', 'U092'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA01B -C', 'Iron and steel manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01D-C', 'Iron ore handling installation', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02B -C', 'Isolation (animal living place)', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01C-G', 'Isolation hospital', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04F -C', 'Jewellery and precious metal manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01B -B', 'Junior school', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM08', 'Justice administration places', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -C', 'Jute manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03C-B', 'Knackering place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -B', 'Knitted goods manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -D', 'Lace manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03A -F', 'Lacrosse ground', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03H-B', 'Land sailing area', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03', 'Land sport places', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02', 'Land transport places', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01', 'Land transport tracks', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03H', 'Land vehicle performance places', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT02B -C', 'Launderette', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT02B -D', 'Laundry (cleaning only)', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -G', 'Laundry, cleaning and repairing shop (receiving)', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM08A -B', 'Law court', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA01B -D', 'Lead manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05B -C', 'Leather (tanning and dressing) and fellmongery place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05B', 'Leather and fur goods manufacturing places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05B -B', 'Leather goods manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE02A -A', 'Lending library', 'class', 'U043'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE02A', 'Libraries', 'class', 'U043'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE02', 'Libraries, museums and galleries', 'class', 'U043'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05B -E', 'Life boat station', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR05A -C', 'Lift', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01F -B', 'Light railway', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -G', 'Limestone working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA08A -B', 'Linoleum, plastics floor covering, leather cloth manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('DF01A -A', 'Live firing military training area', 'class', 'U121'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01E -C', 'Local distributor road', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF01A -B', 'Local government administration office', 'class', 'U102'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04E -B', 'Locomotives and railway track equipment manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02C-E', 'Long stay lorry park', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02B -D', 'Lorry transhipment park', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA01A -B', 'Lubricating oil and grease manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -E', 'Made up textile manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT04A -A', 'Main drain', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01F -C', 'Main line', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT02', 'Maintenance and repair places', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS02A -D', 'Maisonette', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -F', 'Man made fibre production manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF01A -C', 'Manufacturing administration office', 'class', 'U102'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA10A', 'Manufacturing research establishments', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA12A -A', 'Manufacturing storage place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA12A', 'Manufacturing storage places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA11A', 'Manufacturing waste disposal places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA11A -A', 'Manufacturing waste tip', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR04A -C', 'Marina', 'class', 'U056'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST02', 'Material stores', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01C-H', 'Maternity hospital', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04A', 'Mechanical engineering places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04A -D', 'Mechanical handling equipment manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR05A', 'Mechanical handling places', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01B', 'Medical auxiliary service centres', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A', 'Medical diagnosis and treatment centres', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM02A', 'Medical research establishments', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM02A -A', 'Medical research laboratory', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01C-I', 'Mental hospital', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -I', 'Mental clinic', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA01B', 'Metal processing places (basic forms)', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04A -E', 'Metal working machine tools manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01C-A', 'Middle school', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -I', 'Milk and milk product manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03A -A', 'Milk extraction place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03A -B', 'Milk treatment place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG07A -F', 'Mill and mix building', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01B -B', 'Mineral excavation or pit (dry)', 'class', 'U112'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01C-C', 'Mineral excavation or pit (wet)', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01', 'Mineral extraction places', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01D-E', 'Mineral fertiliser handling installation', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01F -D', 'Mineral line', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA01A -C', 'Mineral oil refinery', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03B -D', 'Miniature golf course', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA08A -C', 'Miscellaneous goods manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA08A -D', 'Miscellaneous stationers goods manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07A -C', 'Miscellaneous wood and cork manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG08B -E', 'Mixed forest', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B -E', 'Mixed market garden', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01B -B', 'Monument', 'class', 'U041'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR04A -D', 'Mooring', 'class', 'U056'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT07A -B', 'Mortuary', 'class', 'U064'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04E -C', 'Motor cycle, tricycle and pedal cycle manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01D-C', 'Motor vehicle dealer display area', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01D', 'Motor vehicle goods shops and filling stations', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT02A', 'Motor vehicle maintenance and repair places', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04E -D', 'Motor vehicle manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01E -E', 'Motor vehicle practice circuit', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03H-C', 'Motor vehicle racing track', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT02A -A', 'Motor vehicle repair garage', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01D-D', 'Motor vehicle sales', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01D-B', 'Motor vehicle spare parts and accessories', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01E -D', 'Motor vehicle testing circuit', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT02A -B', 'Motor vehicle testing station', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01E -F', 'Motorway (special road)', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01C-A', 'Movable dwelling site', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE02B -A', 'Museum', 'class', 'U043'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -G', 'Narrow fabric manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED02B -A', 'Nature reserve', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED02B', 'Nature reserves and sanctuaries', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08F -A', 'Navigational light beacon', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -J', 'Nervous disorders clinic', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG04A -A', 'Net fishery place', 'class', 'U012'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01C-H', 'Night club', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG08', 'Non cultivated places', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01D-D', 'Non ferrous ore handling installation', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM04', 'Non medical care places', 'class', 'U073'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM04A', 'Non medical homes', 'class', 'U073'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS02A -E', 'Non residential plus single dwelling', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B -F', 'Nursery', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01A -B', 'Nursery school', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED02A -B', 'Observatory', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -K', 'Occupational therapy and physiotherapy clinic', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -K', 'Off licence', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04A -F', 'Office machinery manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF', 'Offices', 'class', 'U102'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01D-F', 'Oil and gas handling installation', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01B -B', 'Oil and gas well head', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR05B -A', 'Oil pumping station', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM04A -C', 'Old people''s home', 'class', 'U073'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B -G', 'Orchard with arable land', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B -H', 'Orchard with grass', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B -I', 'Orchard with market garden', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04A -G', 'Ordnance and small arms manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01C-J', 'Orthopaedic hosdpital', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -L', 'Orthopaedic and rheumatic clinic', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01A', 'Outdoor amenity places', 'class', 'U041'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05C-D', 'Overalls and men''s shirts and underwear manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07B -B', 'Packaging products of paper and associated materials manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG07A -G', 'Packing and sorting (crop processing place)', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03D', 'Packing places (animal products)', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA03A -E', 'Paint manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07B -C', 'Paper and board manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07B', 'Paper, printing and publishing works', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01A -D', 'Park', 'class', 'U041'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02A -C', 'Parturition place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01A -E', 'Peat, bog, freshwater marsh and swamp', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07B -D', 'Periodical and newspaper printing and publishing works', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG08A -A', 'Permanent pasture', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT02B', 'Personal and household goods repair and cleaning places', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -H', 'Pet animal and bird shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01D-E', 'Petrol and oil filling station', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH02B -A', 'Petroleum products wholesaling place', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA03A -F', 'Pharmaceutical chemicals and preparation manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04B -A', 'Photographic and document copying equipment manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -I', 'Photographic service shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01A -E', 'Picnic site', 'class', 'U041'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR05B -B', 'Pipeline', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM07A -A', 'Place of worship', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM07A', 'Places of worship', 'class', 'U082'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05B -D', 'Police station', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03A -G', 'Polo ground', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01F -D', 'Polytechnic', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01C-D', 'Pond or lake', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01C-C', 'Pony trekking route', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -J', 'Post office', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08A', 'Postal service places', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08', 'Postal service, signalling and telecommunications places', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08A -A', 'Postal sorting depot', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG04A -B', 'Pot and other inshore or estuarial fishing place', 'class', 'U012'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA06A -E', 'Pottery manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04B -C', 'Power craft water', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01A', 'Pre primary schools', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01A -B', 'Precinct', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01E -G', 'Primary distributor road', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01B', 'Primary schools', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04A -H', 'Prime movers manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05A -C', 'Prison', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05A -D', 'Prison rehabilitation centre', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03C-C', 'Processing place (animal slaughtering place)', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01E -H', 'Processional route (road)', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01A -C', 'Processional route (walking or marching)', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF01A -D', 'Professional services office', 'class', 'U102'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01B -C', 'Protected land (unused)', 'class', 'U111'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05B', 'Protection places', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM03A -A', 'Public bath', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM03A -B', 'Public convenience', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT03A -A', 'Public house', 'class', 'U094'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06A -D', 'Pulse crops place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG07A -D', 'Pulse crops store', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04A -I', 'Pumps, valves and compressor manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS02A -F', 'Purpose built block of flats', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG01B -C', 'Quarantine place, animal', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08C-A', 'Radar beacon', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08C', 'Radar places', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08C-B', 'Radar station', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04C-F', 'Radio and electronic capital goods manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08D-B', 'Radio and television mast', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08D-A', 'Radio station', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04C-G', 'Radio, radar and electronic capital goods manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01B -E', 'Radiography centre', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04E -E', 'Railway carriages and wagons and trams manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02B -E', 'Railway goods siding', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02B -F', 'Railway goods yard', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02C-F', 'Railway sidings', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02B -G', 'Railway sorting depot', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02A -H', 'Railway station', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01F', 'Railways', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03F -B', 'Rambling and fell walking', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02B -D', 'Rearing pond', 'class', 'U012'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE', 'Recreation and leisure places', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01A -F', 'Recreational open space', 'class', 'U041'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE02A -B', 'Reference', 'class', 'U043'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST03A -C', 'Refrigerated store', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT05A', 'Refuse disposal places', 'class', 'U063'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT05', 'Refuse disposal places', 'class', 'U063'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT05A -A', 'Refuse disposal plant', 'class', 'U063'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT05A -B', 'Refuse tip', 'class', 'U063'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05A -E', 'Remand centre', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05A -F', 'Remand classifying centre', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM05A -G', 'Remand home', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED02A', 'Research establishments', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED02', 'Research places', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03A -A', 'Reservoir', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS', 'Residences', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01C-B', 'Residential caravan site', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01A -C', 'Residential club', 'class', 'U072'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01B -B', 'Residential retreat', 'class', 'U073'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT03B -A', 'Restaurant', 'class', 'U093'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01', 'Retail distribution places', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT', 'Retail distribution and servicing places', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01E -A', 'Retail market place', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01C-D', 'Ride', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR03A -B', 'River', 'class', 'U056'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03E -C', 'Road running and walking course', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01E', 'Roads', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03F -C', 'Rock climbing', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG04A -C', 'Rod and line fishery place', 'class', 'U012'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04C-A', 'Rod/recreational fishing place', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03D-E', 'Roller skating rink', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01A -D', 'Rooming house', 'class', 'U072'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06A -E', 'Root crops place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG07A -E', 'Root crops store', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -H', 'Rope, twine and net manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG08A -B', 'Rough grazing', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04B -D', 'Rowing water', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA08A -E', 'Rubber goods manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03A -H', 'Rugby football ground', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL02A -A', 'Ruined building', 'class', 'U112'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04B -E', 'Sailing', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01B -C', 'Salt and brine pumping installation', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01A -F', 'Salt marsh (unused)', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -H', 'Sand and gravel working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -I', 'Sandstone working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM03', 'Sanitation places', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM03A', 'Sanitation places', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08E -A', 'Satellite communication station', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01B -C', 'School boarding house', 'class', 'U073'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04B -C', 'Scientific and industrial instruments and systems manufacturing', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01B -C', 'Scrap and waste dealer', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01D-A', 'Secondary school', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01E -I', 'Secondary distributor road', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01D', 'Secondary schools', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS02', 'Self contained residences', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS02A -G', 'Semi detached house', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02A -D', 'Service pen', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT04', 'Sewage disposal places', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT04A', 'Sewage draining places', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT04B -A', 'Sewage farm', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT04A -B', 'Sewage pumping station', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT04B', 'Sewage treatment places', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT04B -B', 'Sewage treatment works', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02A -I', 'Ship passenger terminal', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04D-A', 'Shipbuilding and marine engineering place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03J -B', 'Shooting and stalking area', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07A -D', 'Shop and office fittings manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01D', 'Show places', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08F -C', 'Signalling station', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -K', 'Silica and moulding sand working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED02B -B', 'Site of special scientific interest', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01D-B', 'Sixth form college', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03E -D', 'Skiing and tobogganing run', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -L', 'Slate working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01C-C', 'Slate waste tip', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03G-B', 'Small arms range', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04F -E', 'Small tools, implements and gauges manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA03A -G', 'Soap, detergent and fat splitting and distillation manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM06B', 'Social meeting places', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -J', 'Soft drinks manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B -J', 'Soft fruit place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01E -A', 'Special school', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01F', 'Specialised, higher and further education centres', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -I', 'Spinning and doubling (cotton and flax systems) manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01B -D', 'Spoilt land', 'class', 'U112'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST01A -E', 'Sports equipment store', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03B -E', 'Squash court', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS01B -D', 'Staff hostel', 'class', 'U073'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07B -A', 'Stationery manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ST', 'Storage', 'class', 'U103'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02C', 'Storage places for vehicles', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR04A', 'Storage places for water craft', 'class', 'U056'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('OF04A -A', 'Studio', 'class', 'U102'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -K', 'Sugar refinery', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01F -D', 'Supermarket', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01B', 'Surface installations for underground mineral workings', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A', 'Surface mineral workings', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM01A -M', 'Surgeon''s surgery and consulting room', 'class', 'U081'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04B -B', 'Surgical instruments and appliances manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04A', 'Swimming and bathing', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04A -A', 'Swimming baths', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA03A -H', 'Synthetic resins, plastics and synthetic rubber manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05C-E', 'Tailored outerwear manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03G', 'Target shooting places', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01F -E', 'Teacher training college', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01F -F', 'Technical college', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04C-H', 'Telegraph and telephone apparatus and equipment manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08B -A', 'Telephone cableway', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08B -B', 'Telephone exchange', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08B -C', 'Telephone kiosk', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08D', 'Television and radio broadcasting places', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT08D-C', 'Television station', 'class', 'U065'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03B -G', 'Ten pin bowling alley', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE03B -F', 'Tennis court', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02B', 'Terminals and interchanges for goods', 'class', 'U055'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR02A', 'Terminals and interchanges for people', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RS02A -H', 'Terraced house', 'class', 'U071'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -J', 'Textile finishing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04A -J', 'Textile machinery and accessories manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A', 'Textile manufacturing places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01D-G', 'Theatre', 'class', 'U042'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT02A -B', 'Thermal electricity generating station', 'class', 'U061'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -K', 'Ticket agency', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07A', 'Timber and furniture works', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH01B -D', 'Timber dealer''s place', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07', 'Timber furniture, paper, printing and publishing works', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07A -E', 'Timber works', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -L', 'Tobacco manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA03A -I', 'Toilet preparation manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA08A -F', 'Toys, games, children''s carriages and sports equipment manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01F -E', 'Tramway', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR', 'Transport tracks and places', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -L', 'Travel agency', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG08B -F', 'Tree nursery', 'class', 'U021'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('CM08A -C', 'Tribunal place', 'class', 'U084'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01A -L', 'Tripe shop', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01D-F', 'Tyre retailing and fitting place', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01F -F', 'Underground line', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('RT01B -M', 'Undertaker', 'class', 'U091'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('ED01F -G', 'University teaching establishment', 'class', 'U083'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL02A', 'Unused buildings', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01B', 'Unused formerly developed land', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01', 'Unused land and water', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01A', 'Unused land in natural or semi natural state', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01C', 'Unused water', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT', 'Utility services', 'class', NULL); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL02A -B', 'Vacant building', 'class', 'U111'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG07A -H', 'Vegetable (crop conditioning and storage)', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG06B -K', 'Vegetable field', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA02A -M', 'Vegetable, animal oil and fat manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04E', 'Vehicle engineering places', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01A -M', 'Vein mineral working', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01C-D', 'Vein mineral waste tip and settlement lagoon', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG01B -D', 'Veterinary hospital', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG01B -E', 'Veterinary surgery', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01A -G', 'View point', 'class', 'U041'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR01A -D', 'Walkway', 'class', 'U051'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MI01C', 'Waste disposal areas from mineral working and processing', 'class', 'U031'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01B -E', 'Waste heap or tip', 'class', 'U112'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04B -D', 'Watches and clocks manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01C-E', 'Water course', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03B', 'Water distribution places', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03C', 'Water extraction places', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03C-B', 'Water intake from rivers or streams', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03C-A', 'Water intake from springs', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03C-C', 'Water intake from underground sources', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03B -B', 'Water pipeline', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03B -A', 'Water pumping station', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04C', 'Water recreation places', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04B -F', 'Water skiing place', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04', 'Water sport places', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03A', 'Water storage and treatment places', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03', 'Water supply places', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03A -B', 'Water tower', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR03A', 'Water tracks', 'class', 'U056'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR04', 'Water transport places', 'class', 'U056'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('TR03', 'Water transport tracks', 'class', 'U056'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UT03A -C', 'Water treatment works', 'class', 'U062'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE04B', 'Watercraft places', 'class', 'U044'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05C-F', 'Weatherproof outerwear manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -K', 'Weaving of cotton, linen and man made fibres manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG02B -E', 'Weighing place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04E -F', 'Wheeled tractor manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('WH02', 'Wholesale distribution places', 'class', 'U104'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG04', 'Wild life capturing places', 'class', 'U012'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA04F -F', 'Wire manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA07A -F', 'Wooden containers and baskets manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('UL01A -G', 'Woodland and scrub', 'class', 'U131'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03B -A', 'Wool grading place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('AG03B -B', 'Wool removal place', 'class', 'U011'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('MA05A -L', 'Woollen and worsted manufacturing place', 'class', 'U101'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE05A -D', 'Youth hostel', 'class', 'U045'); + +INSERT INTO landuse_classifications (landuse_id, description, level, parent) + VALUES ('LE01A -A', 'Zoological garden', 'class', 'U041');