Statewide coverage of Water Assurance Compliance System (WACS) Solid Waste Facilities.
To compile facility specific information on Solid Waste Management facilities statewide and monitor their potential to impact ground water.
The Solid Waste Program regulates (permitting, compliance, enforcement) the design, construction, operation and maintenance of Solid Waste Facilities. It ensures the proper closure and long-term monitoring and maintenance of those facilities which have concluded useful production, or which are otherwise required by rule to be closed. The program also administers financial responsibility requirements designed to guarantee that owners/operators have the financial ability to properly close and manage the Solid Waste Facilities.
publication date
The locational data point of each is provided by the responsible party and reviewed by the Florida Department of Environmental Protection (FDEP) agency staff. FDEP makes no representations of any kind, including, but not limited to, the warranties of merchantability or fitness for a particular use, nor are any such warranties to be implied with respect to the digital data layers furnished hereunder. FDEP assumes no responsibility to maintain them in any manner or form. By using data provided herein, the user acknowledges that terms and conditions have been read and that the user is bound by these criteria.
2600 Blair Stone Road, MS 4500
Please, email is preferred. Include your name, organization, date data is needed, and brief description of what the data will be used for.
Data was compiled by the Districts and Tallahassee Solid Waste GIS Coordinator.
GeoPlan relied on the integrity of the attribute information within the original data.
This data is provided 'as is'. GeoPlan relied on the integrity of the original data layer's topology
This data is provided 'as is' by GeoPlan and is complete to our knowledge.
This data is provided 'as is' and its horizontal positional accuracy has not been verified by GeoPlan
This data is provided 'as is' and its vertical positional accuracy has not been verified by GeoPlan
Spatial and Attribute Information
Features were digitized by looking the 1994, 1999, and 2004 Digital Ortho Quads on the screen. The department used flat maps, mirco fish, and the application to find GIS locations.
2600 Blairstone Road
Please, email is preferred. Include your name, organization, date data is needed, and brief description of what the data will be used for
Layer updated with the revised script as requested by Lee Martin and Casey Taylor: CREATE OR REPLACE VIEW waste_facs_pt_geometry_vw ( facility_id, facility_name, facility_type, facility_status, status_date, object_of_interest, class, class_status, ownership, address, city, zip5, zip4, district, office, county_id, county, proximity_id, lat_dd, lat_mm, lat_ss, long_dd, long_mm, long_ss, datum_id, coordinate_method_id, accuracy_level, accuracy, qa_status, collector_user_name, collect_date, verifier_user_name, verification_date, verify_method_id, geometry, objectid ) AS SELECT wf.wacs_facility_id facility_id, wf.name facility_name, (select Initcap(description) from wacs.wacs_facility_type_codes where wacs_facility_type_id = wf.wftc_wacs_facility_type_id) facility_type, (select Initcap(description) from wacs.facility_status_codes where facility_STATUS_ID = wf.fsc3_facility_status_id) facility_status, wf.facility_status_date, (Select Initcap(Name) from FDM.object_of_interest_codes where object_of_interest_id = gl.oic_object_of_interest_id) object_of_interest, decode(gl.oic_object_of_interest_id, 'DISPS',(select description from wacs.facility_class_type_codes, wacs.solid_waste_landfills sl where sl.solid_waste_landfill_id = gl.swl_solid_waste_landfill_id and facility_class_type_id = sl.fctc_facility_class_type_id) , 'PROCE',(select description from wacs.facility_class_type_codes, wacs.solid_waste_processings sp where sp.solid_waste_processing_id = gl.swp_solid_waste_processing_id and facility_class_type_id = sp.fctc_facility_class_type_id),null) class_type, decode(gl.oic_object_of_interest_id, 'DISPS',(select Initcap(description) from wacs.facility_status_codes, wacs.solid_waste_landfills sl where sl.solid_waste_landfill_id = gl.swl_solid_waste_landfill_id and facility_status_id = sl.fsc3_facility_status_id), 'PROCE',(select Initcap(description) from wacs.facility_status_codes, wacs.solid_waste_processings sp where sp.solid_waste_processing_id = gl.swp_solid_waste_processing_id and facility_status_id = sp.fsc3_facility_status_id),null) class_status, (select Initcap(description) from wacs.wacs_ownership_type_codes where WACS_ownership_type_ID = wf.wotc_wacs_ownership_type_id ) owner_type, wf.address, Initcap(wf.city), wf.zip5, wf.zip4, wf.dis_district_abbreviation district, (select Initcap(Name) from fdm.office_codes oc where oc.office_id = wf.oc2_office_id and oc.ddc_dep_district_id = wf.dis_district_abbreviation), wf.cc_county_id county_id, (select Initcap(Name) from BIS_LIB.county_codes where county_id = wf.cc_county_id), (select description from fdm.proximity_codes where gl.PC2_proximity_id = proximity_id), gl.lat_dd_nbr,gl.lat_mm_nbr,gl.lat_ss_nbr,gl.long_dd_nbr,gl.long_mm_nbr,gl.long_ss_nbr, gl.DC4_DATUM_ID, (select description from fdm.coordinate_method_codes where CMC2_COORDINATE_METHOD_ID = COORDINATE_METHOD_ID), gl.CALC_COORD_ACCURACY_LEVEL_ID, (select Range_begin||' - '||Range_end||' meters' from BIS_LIB.coordinate_accuracy_codes where coordinate_accuracy_id = gl.CALC_COORD_ACCURACY_LEVEL_ID), Initcap(gl.VSC1_VERIFICATION_STATUS_ID), /* Fields following this comment will be needed by DQD. */ gl.COLLECTOR_USER_NAME, gl.COLLECT_DATE, gl.VERIFIER_USER_NAME, gl.VERIFICATION_DATE, gl.CMC2_VERIFIED_COORD_METHOD_ID, CASE when long_dd_nbr < 78 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when long_dd_nbr > 88 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when long_dd_nbr is NULL THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when long_mm_nbr < 0 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when long_mm_nbr >= 60 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when long_mm_nbr is NULL THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when long_ss_nbr < 0 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when long_ss_nbr >= 60 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when long_ss_nbr is NULL THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when lat_dd_nbr < 23 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when lat_dd_nbr > 32 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when lat_dd_nbr is NULL THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when lat_mm_nbr < 0 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when lat_mm_nbr >= 60 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when lat_mm_nbr is NULL THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when lat_ss_nbr < 0 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when lat_ss_nbr >= 60 THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) when lat_ss_nbr is NULL THEN MDSYS.SDO_GEOMETRY(2001, 1000001, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL) ELSE mdsys.sdo_cs.transform( -- trasnform from lat/long to albers mdsys.sdo_geometry ( -- create the lat/long geometry 2001, -- 2D point feature decode(dc4_datum_id, 'NAD27', 8260, 'NAD83', 8265, 'WGS84', 8307, 'HARN', 8265, NULL, 8265, 8265), -- cover the datums we are likely to find mdsys.sdo_point_type( -- make a point from the lat/long ( -(abs(NVL(long_dd_nbr,0)) + (NVL(long_mm_nbr,0)/60) + (NVL(long_ss_nbr,0)/3600)) ), (abs(NVL(lat_dd_nbr,0)) + (NVL(lat_mm_nbr,0)/60) + (NVL(lat_ss_nbr,0)/3600)), null), null, -- no element info array null ), -- no ordinate array 1000001 ) END geometry, -- transform to the fdep albers srid rownum FROM wacs.wacs_facilities wf, wacs.wacs_geographic_locations gl WHERE wf.wftc_wacs_facility_type_id in (3) AND gl.oic_object_of_interest_id IN ('FACIL' , 'DISPS' , 'PROCE') AND wf.wacs_facility_id not in -- new exclude query per Lee Martin 10-24-11 ( SELECT distinct wf1_wacs_facility_id from wacs.FAC_WASTES_HANDLED fwh WHERE fwh.WTC_WASTE_TYPE_ID = 161 union select distinct wf1_wacs_facility_id from wacs.solid_waste_landfills where fctc_facility_class_type_id = 530 or fsc3_facility_status_id = 'M' union select distinct wf1_wacs_facility_id from wacs.solid_waste_processings where fctc_facility_class_type_id = 530 or fsc3_facility_status_id = 'M' ) AND wf.wacs_facility_id = gl.wf1_wacs_facility_id AND GL.WACS_GEO.SDO_GTYPE IN (2001) Order by facility_id, facility_status
The GeoPlan Center took the following steps during the QA/QC process: - Downloaded the dataset on 7/26/2017 from the FDEP website here: http://geodata.dep.state.fl.us/. - The data was received as a shapefile in the following projection: WGS 1984. - Dataset was projected into the FGDL Albers HPGN projection. - DESCRIPT field added based on the CLASS field. Any record with no data in the CLASS field had their DESCRIPT field calculated as 'NO DESCRIPT AVAILABLE'. - FGDLAQDATE field added based on the date the dataset was downloaded from source. - The longest record for each field was found and field character lengths were shortened to the appropriate shortest length possible. - Uppercased fields and records in the dataset. - Updated metadata ground condition to reflect changes apparent in the data as noted in the COLLECT_DA field (7/26/2017) - Layer name changed from Solid_Waste_Facilities.shp to sldwst_jul17.shp.
Dataset copied.
Internal feature number.
ESRI
Feature geometry.
Esri
Facility ID
FDEP WACS DATABASE
Facility name
FDEP WACS DATABASE
Facility type
FDEP WACS DATABASE
Facility status
FDEP WACS DATABASE
Date associated with facility status field
FDEP WACS DATABASE
The Object of Interest (the thing regulated, permitted, or tracked). While the BIS Applications group will maintain the Object of Interest code table, the program area will be responsible for determining the taxonomy of codes needed to support their applications and business decisions.
FDEP WACS DATABASE
Types of classes. For example: landfill, tire disposal, yard trash, etc.
FDEP WACS DATABASE
Class status
FDEP WACS DATABASE
Type of ownership
FDEP WACS DATABASE
Street address or physical location by direction
FDEP WACS DATABASE
City the facility is located in
FDEP WACS DATABASE
Zip code of the facility
FDEP WACS DATABASE
Zip code of the facility plus 4 dig
FDEP WACS DATABASE
The district the facility is located in
FDEP WACS DATABASE
Central District
North East District
North West District
South East District
South West District
South District
Type of district offices
FDEP WACS DATABASE
Florida county by numbers 1 - 67
FDEP WACS DATABASE
Florida county by names Alachua - Washington
FDEP WACS DATABASE
Description of proximity of point to actual feature being represented
FDEP WACS DATABASE
Latitude - degrees location identifier
FDEP WACS DATABASE
Latitude - minutes location identifier
FDEP WACS DATABASE
Latitude - seconds location identifier
FDEP WACS DATABASE
Longitude - degrees location identifier
FDEP WACS DATABASE
Longitude - minutes location identifier
FDEP WACS DATABASE
Longitude - seconds location identifier
FDEP WACS DATABASE
Datum type
FDEP WACS DATABASE
High Precision GIS Network / High Precision Geodetic Reference
North American Datum of 1927
North American Datum of 1983
World Geodetic Survey of 1984
Method by which coordinates were acquired
FDEP WACS DATABASE
Coordinate accuracy level codes
FDEP WACS DATABASE
+/- 0.01 meter
0.02 to 1.0 meter
1.1 meter to 10 meters
10 meters to 20 meters
20 meters to 50 meters
> 50 meters
Accuracy level
FDEP WACS DATABASE
CSUR - Cadastral or Land Survey
GGPS - Geodetic Quality C/A Code and Carrier Phase GPS
DGPS - Differentially Corrected C/A Code Phase GPS
WGPS - C/A Code Phase GPS with Wide-Area Augmentation Service Correction
DPHO - Digital Aerial Photography
AGPS - Autonomous C/A Code Phase GPS
DMAP - Digital Map Interpolation
CALC - Calculated by GIS Software
LORN - LORAN-C Navigational Device
ADDM - Address Matching / Precision Mapping
MPHO - Manual Aerial Photography With Ground Control
MMAP Manual Map Interpolation
SATI - Satellite Imagery
ZIP2 - ZIP Code + 2 Segment Centroid
ZIP4 - ZIP Code +4 Segment Centroid
ZIPC - ZIP Code Centroid
Other or unknown
Reviewing status
FDEP WACS DATABASE
The name of the person taking the measurement
FDEP WACS DATABASE
The date and time on which the measurement was taken
FDEP WACS DATABASE
Person or FDEP program verifying info
FDEP WACS DATABASE
Date of verification
FDEP WACS DATABASE
Method of verification
FDEP WACS DATABASE
Digital Aerial Photography with Ground Control
FGDL added field based on CLASS
GeoPlan
FGDL added field based on date downloaded from source
GeoPlan
Unique ID added by GeoPlan
GeoPlan
431 Architecture PO Box 115706
The Florida Geographic Data Library is a collection of Geospatial Data compiled by the University of Florida GeoPlan Center with support from the Florida Department of Transportation. GIS data available in FGDL is collected from various state, federal, and other agencies (data sources) who are data stewards, producers, or publishers. The data available in FGDL may not be the most current version of the data offered by the data source. University of Florida GeoPlan Center makes no guarantees about the currentness of the data and suggests that data users check with the data source to see if more recent versions of the data exist. Furthermore, the GIS data available in the FGDL are provided 'as is'. The University of Florida GeoPlan Center makes no warranties, guaranties or representations as to the truth, accuracy or completeness of the data provided by the data sources. The University of Florida GeoPlan Center makes no representations or warranties about the quality or suitability of the materials, either expressly or implied, including but not limited to any implied warranties of merchantability, fitness for a particular purpose, or non-infringement. The University of Florida GeoPlan Center shall not be liable for any damages suffered as a result of using, modifying, contributing or distributing the materials. A note about data scale: Scale is an important factor in data usage. Certain scale datasets are not suitable for some project, analysis, or modeling purposes. Please be sure you are using the best available data. 1:24000 scale datasets are recommended for projects that are at the county level. 1:24000 data should NOT be used for high accuracy base mapping such as property parcel boundaries. 1:100000 scale datasets are recommended for projects that are at the multi-county or regional level. 1:125000 scale datasets are recommended for projects that are at the regional or state level or larger. Vector datasets with no defined scale or accuracy should be considered suspect. Make sure you are familiar with your data before using it for projects or analysis. Every effort has been made to supply the user with data documentation. For additional information, see the References section and the Data Source Contact section of this documentation. For more information regarding scale and accuracy, see our webpage at: http://geoplan.ufl.edu/education.html
2600 Blair Stone Road
Email is preferred. Please include your name, organization, question or description of data requested, date data is needed, and brief description of how the data will be used.