├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── Vagrantfile ├── celeryflower-passwords.template ├── docs ├── mockups │ ├── assets │ │ ├── Adobe-PDF-Logo.jpg │ │ ├── Screen Shot 2013-01-30 at 4.12.35 PM.png │ │ ├── harvest-map.png │ │ ├── login-map.png │ │ ├── lot-logo.png │ │ ├── manage-stands-creating.png │ │ ├── manage-stands-initial.png │ │ ├── map-property-initial.png │ │ ├── property-polygon.png │ │ ├── stand-map.png │ │ └── stands-map.png │ ├── blank.bmml │ ├── login-screen.bmml │ ├── manage-properties-creating.bmml │ ├── manage-properties-initial.bmml │ ├── manage-properties-list.bmml │ ├── manage-stands-creating.bmml │ ├── manage-stands-initial.bmml │ ├── manage-stands-list.bmml │ ├── manage-strata-applying.bmml │ ├── manage-strata-defining.bmml │ ├── old │ │ └── create-stand-original.bmml │ ├── pdfs │ │ ├── create-stand.pdf │ │ ├── mockups_20120406.pdf │ │ └── strata.pdf │ ├── stand-analysis-cashflow.bmml │ ├── stand-analysis-map.bmml │ └── stand-analysis-scenarios.bmml ├── model_graph.png └── user_inventory │ ├── Makefile │ ├── doc_template.tex │ ├── user_inventory.md │ ├── user_inventory.pdf │ └── workflows.png ├── fab_vars.py.template ├── fabfile.py ├── feature_files └── README ├── gnn_import ├── README ├── export_gnn.sh ├── export_treelive.sh ├── load_gnn.sh ├── load_treelive.sh ├── schema.SPPSZ_ATTR_ALL.sql ├── schema.TREE_LIVE.sql ├── schema_gnn.sh └── schema_treelive.sh ├── idb_import ├── README ├── export_idb.sh ├── load_idb.sh ├── lut.txt ├── schema.IDB.sql ├── schema_idb.sh └── treelive_summary │ ├── pivoted │ ├── create_pivot.py │ ├── create_sqlite.py │ ├── load.sh │ ├── read_pickle.py │ └── read_sqlite.py │ └── unpivoted │ ├── load.sh │ ├── local_util.py │ ├── local_util_test_dbh_flexibility.py │ ├── query_stand_list.py │ └── schema.sql ├── logs ├── README └── cost_errors │ ├── .gitignore │ ├── README │ └── test.py ├── lot ├── deploy │ ├── celery │ ├── celery.service │ ├── emperor.ini │ ├── forestplanner.ini │ ├── nginx_config │ ├── rc.local │ ├── redis.service │ ├── restart_nginx.sh │ ├── tmpfile_celery.conf │ └── uwsgi.service ├── discovery │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fields.py │ ├── fixtures │ │ └── initial_content.json │ ├── forms.py │ ├── local_settings.template │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20190411_1242.py │ │ ├── 0003_examplestand_standlistentry.py │ │ ├── 0004_auto_20190417_1201.py │ │ ├── 0005_auto_20190417_1510.py │ │ ├── 0006_examplestand_content.py │ │ ├── 0007_auto_20190423_1048.py │ │ ├── 0008_auto_20190423_1541.py │ │ ├── 0009_auto_20190427_1944.py │ │ └── __init__.py │ ├── models.py │ ├── scripts │ │ └── restart_services.sh │ ├── settings.py │ ├── static │ │ └── discovery │ │ │ ├── css │ │ │ ├── compare.css │ │ │ ├── discovery.css │ │ │ ├── flatpages.css │ │ │ ├── footer.css │ │ │ ├── grid.css │ │ │ ├── map.css │ │ │ ├── page.css │ │ │ ├── profile.css │ │ │ └── tooltips.css │ │ │ ├── dependencies │ │ │ ├── DataTables │ │ │ │ ├── DataTables-1.10.18 │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ │ ├── dataTables.bootstrap.min.css │ │ │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ │ │ │ ├── dataTables.foundation.css │ │ │ │ │ │ ├── dataTables.foundation.min.css │ │ │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ │ │ ├── dataTables.jqueryui.min.css │ │ │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ │ │ ├── dataTables.semanticui.min.css │ │ │ │ │ │ ├── jquery.dataTables.css │ │ │ │ │ │ └── jquery.dataTables.min.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ │ │ │ ├── dataTables.foundation.js │ │ │ │ │ │ ├── dataTables.foundation.min.js │ │ │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ │ │ ├── dataTables.jqueryui.min.js │ │ │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ │ │ ├── dataTables.semanticui.min.js │ │ │ │ │ │ ├── jquery.dataTables.js │ │ │ │ │ │ └── jquery.dataTables.min.js │ │ │ │ ├── datatables.css │ │ │ │ ├── datatables.js │ │ │ │ ├── datatables.min.css │ │ │ │ └── datatables.min.js │ │ │ ├── bootstrap-4.3.1-dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── d3 │ │ │ │ ├── API.md │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── d3.js │ │ │ │ └── d3.min.js │ │ │ ├── fontawesome-3.0.1 │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ └── font │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── jquery-3.3.1.min.js │ │ │ ├── ol-layerswitcher │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ │ └── ol-layerswitcher.js │ │ │ │ └── src │ │ │ │ │ ├── ol-layerswitcher.css │ │ │ │ │ └── ol-layerswitcher.js │ │ │ └── ol │ │ │ │ ├── ol-5.3.0.min.css │ │ │ │ └── ol-5.3.0.min.js │ │ │ ├── img │ │ │ ├── Evergreen_(PSF).png │ │ │ ├── README.md │ │ │ ├── Trees_icon.png │ │ │ └── Trees_icon_wide.png │ │ │ └── js │ │ │ ├── compare.js │ │ │ ├── discovery.js │ │ │ ├── map.js │ │ │ ├── map │ │ │ └── actions.js │ │ │ ├── profile.js │ │ │ ├── stands.js │ │ │ └── strata.js │ ├── templates │ │ ├── admin │ │ │ └── discovery │ │ │ │ └── examplestand │ │ │ │ └── change_form.html │ │ ├── discovery │ │ │ ├── about.html │ │ │ ├── account │ │ │ │ ├── login.html │ │ │ │ ├── password_reset.html │ │ │ │ ├── profile.html │ │ │ │ ├── reset.html │ │ │ │ └── signup.html │ │ │ ├── admin │ │ │ │ └── gis │ │ │ │ │ └── openlayers.html │ │ │ ├── collect_data.html │ │ │ ├── common │ │ │ │ ├── action_buttons.html │ │ │ │ ├── base.html │ │ │ │ ├── breadcrumbs.html │ │ │ │ ├── data_table.html │ │ │ │ ├── footer.html │ │ │ │ ├── grid.html │ │ │ │ ├── hamburger.html │ │ │ │ ├── header.html │ │ │ │ ├── help_modal.html │ │ │ │ ├── modal.html │ │ │ │ └── strata.html │ │ │ ├── compare_outcomes.html │ │ │ ├── documentation.html │ │ │ ├── example_stand │ │ │ │ └── modal.html │ │ │ ├── forest_profile.html │ │ │ ├── landing.html │ │ │ ├── map.html │ │ │ ├── page.html │ │ │ ├── report.html │ │ │ ├── stand │ │ │ │ └── modal.html │ │ │ └── stand_grid.html │ │ └── flatpages │ │ │ └── default.html │ ├── tests.py │ ├── urls.py │ ├── views.py │ └── widgets.py ├── functional_tests.py ├── landmapper │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── bak │ │ └── LM_form.bak.pdf │ ├── data │ │ ├── forest_types_2021 │ │ │ └── FOREST_TYPES_2021.sql │ │ └── population_2021 │ │ │ └── OR_POPULATION_2021.sql │ ├── fetch.py │ ├── fill_pdf.py │ ├── local_settings.template │ ├── management │ │ └── commands │ │ │ └── clearcache.py │ ├── map_layers │ │ └── views.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_menupage_content.py │ │ ├── 0003_property.py │ │ ├── 0004_auto_20200713_1624.py │ │ ├── 0005_auto_20200730_1318.py │ │ ├── 0006_property_property_map_image.py │ │ ├── 0007_property_scalebar_image.py │ │ ├── 0008_auto_20200810_2114.py │ │ ├── 0009_auto_20201005_1416.py │ │ ├── 0010_auto_20201005_1653.py │ │ ├── 0011_auto_20201026_1129.py │ │ ├── 0012_soiltype.py │ │ ├── 0013_taxlot_uuid.py │ │ ├── 0014_auto_20201103_1256.py │ │ ├── 0015_auto_20201103_1445.py │ │ ├── 0016_remove_taxlot_uuid.py │ │ ├── 0017_auto_20201125_1059.py │ │ ├── 0018_auto_20201205_1425.py │ │ ├── 0019_auto_20210707_1147.py │ │ ├── 0019_property_property_map_image_509x722.py │ │ ├── 0020_auto_20210412_1010.py │ │ ├── 0021_merge_20210707_1444.py │ │ ├── 0022_auto_20210708_1701.py │ │ ├── 0023_populationpoint.py │ │ ├── 0024_auto_20210726_1544.py │ │ ├── 0025_auto_20211222_0946.py │ │ └── __init__.py │ ├── models.py │ ├── pdf_templates │ │ ├── LM_Form.pdf │ │ ├── LM_Form_12_soils.pdf │ │ └── LM_Form_sans_forests.pdf │ ├── properties.py │ ├── reports.py │ ├── scripts │ │ ├── clean_old_files.sh │ │ ├── forest_type_field_map.json │ │ ├── population_field_map.json │ │ ├── process_forest_types_shp.sh │ │ ├── process_population_shp.sh │ │ ├── process_soils_shp.sh │ │ ├── process_taxlot_grid.sh │ │ ├── soil_field_map.json │ │ ├── taxlot_field_map.json │ │ ├── translate.py │ │ └── validate_fields.py │ ├── settings.py │ ├── static │ │ ├── ckeditor │ │ │ └── ckeditor │ │ │ │ └── plugins │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── youtube │ │ │ │ ├── images │ │ │ │ ├── icon-hdpi.png │ │ │ │ └── icon.png │ │ │ │ ├── lang │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── he.js │ │ │ │ ├── hu.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ko.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ └── landmapper │ │ │ ├── css │ │ │ ├── animations.css │ │ │ ├── base.css │ │ │ ├── bootstrap-4.5.0 │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts.css │ │ │ ├── header.css │ │ │ ├── home.css │ │ │ ├── map.css │ │ │ ├── openlayers-v6.3.1-dist │ │ │ │ ├── ol.css │ │ │ │ └── ol.css.map │ │ │ ├── print.css │ │ │ └── report.css │ │ │ ├── fonts │ │ │ ├── AvenirLTStd-Black.otf │ │ │ ├── AvenirLTStd-Black.woff │ │ │ ├── AvenirLTStd-Book.otf │ │ │ ├── AvenirLTStd-Book.woff │ │ │ ├── AvenirLTStd-Heavy.otf │ │ │ ├── AvenirLTStd-Heavy.woff │ │ │ ├── AvenirLTStd-Light.otf │ │ │ ├── AvenirLTStd-Light.woff │ │ │ ├── AvenirLTStd-Medium.woff │ │ │ ├── AvenirLTStd-Roman.otf │ │ │ ├── AvenirLTStd-Roman.woff │ │ │ ├── FontAwesome.otf │ │ │ ├── Gotham-Bold.otf │ │ │ ├── Gotham-Book.otf │ │ │ ├── GothamRnd-Bold.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── gotham-rounded-book.otf │ │ │ ├── img │ │ │ ├── blk_ecotrust_logo.svg │ │ │ ├── blk_ecotrust_logo@2x.png │ │ │ ├── blue_ecotrust_logo-1.png │ │ │ ├── blue_ecotrust_logo-1.svg │ │ │ ├── blue_ecotrust_logo.png │ │ │ ├── blue_ecotrust_logo.svg │ │ │ ├── blue_ecotrust_logo@2x.png │ │ │ ├── icon │ │ │ │ ├── 1x │ │ │ │ │ └── icon-north.png │ │ │ │ ├── 2x │ │ │ │ │ └── icon-north@2x.png │ │ │ │ └── icon-north.svg │ │ │ ├── legend_images │ │ │ │ ├── directions_aerial.png │ │ │ │ ├── forest_types.png │ │ │ │ ├── hydrology.png │ │ │ │ ├── soils.png │ │ │ │ ├── street_map_legend.png │ │ │ │ └── topo.png │ │ │ ├── logo-landmapper.png │ │ │ ├── logo-landmapper.svg │ │ │ ├── logo-landmapper@2x.png │ │ │ ├── pin_hollow.svg │ │ │ ├── pin_solid.svg │ │ │ └── pin_solid_red.svg │ │ │ └── js │ │ │ ├── bootstrap-4.5.0 │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ │ ├── create_report.js │ │ │ ├── jquery-3.5.1 │ │ │ ├── jquery-3.5.1.min.js │ │ │ └── jquery-3.5.1.slim.min.js │ │ │ ├── map.js │ │ │ ├── openlayers-v6.3.1-dist │ │ │ ├── ol.js │ │ │ └── ol.js.map │ │ │ └── report.js │ ├── templates │ │ ├── flatpages │ │ │ └── default.html │ │ └── landmapper │ │ │ ├── base.html │ │ │ ├── common │ │ │ ├── header.html │ │ │ └── modal.html │ │ │ ├── landing.html │ │ │ ├── report │ │ │ ├── report-aerial.html │ │ │ ├── report-forest-type-table.html │ │ │ ├── report-forest-type.html │ │ │ ├── report-map.html │ │ │ ├── report-overview.html │ │ │ ├── report-soil-table.html │ │ │ ├── report-soil.html │ │ │ ├── report-streams.html │ │ │ ├── report-street.html │ │ │ ├── report-terrain.html │ │ │ └── report.html │ │ │ └── two-pane.html │ ├── testing_files │ │ ├── __init__.py │ │ └── image_test │ │ │ └── __init__.py │ ├── tests.py │ ├── tests │ │ ├── __init__.py │ │ ├── output │ │ │ └── __init__.py │ │ ├── test_bypassaddressinput.py │ │ ├── test_geocode.py │ │ ├── test_pdf.py │ │ └── test_render_static_maps.py │ ├── urls.py │ └── views.py ├── load_new_conditions.py ├── lot │ ├── __init__.py │ ├── celery.py │ ├── fixtures │ │ ├── fvs_species_western.json.gz │ │ ├── mills │ │ │ ├── mills.dbf │ │ │ ├── mills.prj │ │ │ ├── mills.qix │ │ │ ├── mills.qpj │ │ │ ├── mills.shp │ │ │ └── mills.shx │ │ ├── test_conditionvariantlookup.json │ │ ├── test_counties.json │ │ ├── test_fvs_variants.json.gz │ │ ├── test_fvsaggregate.json │ │ ├── test_idb_summary.json.gz │ │ ├── test_rasters.json │ │ ├── test_treelive_summary.json │ │ ├── test_trees.json │ │ ├── timberprices.json │ │ └── trees_plotlookup.json │ ├── local_settings.template │ ├── new_settings.py │ ├── new_urls.py │ ├── old_django │ │ └── manage.py │ ├── run_tests.sh │ ├── scripts │ │ └── load_treelive.sh │ ├── settings.py │ ├── static │ │ └── lot │ │ │ ├── css │ │ │ ├── lot.css │ │ │ ├── manage_scenario.css │ │ │ └── manage_strata.css │ │ │ └── js │ │ │ ├── manage_scenario.js │ │ │ └── manage_strata.js │ ├── sync_media.sh │ ├── templates │ │ └── lot │ │ │ ├── 400.html │ │ │ ├── 500.html │ │ │ ├── account │ │ │ ├── base.html │ │ │ ├── login.html │ │ │ ├── password_reset.html │ │ │ ├── profile.html │ │ │ └── signup.html │ │ │ ├── authopenid │ │ │ └── signin_local.html │ │ │ ├── base.html │ │ │ ├── common │ │ │ ├── about.html │ │ │ ├── base.html │ │ │ ├── base_form.html │ │ │ ├── browse_carbongroups.html │ │ │ ├── documentation.html │ │ │ ├── geosearch.html │ │ │ ├── intro.html │ │ │ ├── lot_selection.html │ │ │ ├── manage_carbongroups_dashboard.html │ │ │ ├── manage_carbongroups_entry.html │ │ │ ├── manage_scenario.html │ │ │ ├── manage_strata.html │ │ │ ├── manage_strata_orig.html │ │ │ ├── map_demo.html │ │ │ ├── map_ext.html │ │ │ ├── panel.html │ │ │ ├── supported_browsers.html │ │ │ └── tests.html │ │ │ ├── news │ │ │ └── about.html │ │ │ ├── socialaccount │ │ │ ├── connections.html │ │ │ └── signup.html │ │ │ └── tos.html │ ├── urls.py │ ├── views.py │ ├── watch.sh │ └── wsgi.py ├── manage.py └── trees │ ├── __init__.py │ ├── admin.py │ ├── fixtures │ ├── initial_data.json │ └── testdata │ │ ├── .gitignore │ │ ├── aspect.tif │ │ ├── cos_aspect.tif │ │ ├── elevation.tif │ │ ├── elevationx2.tif │ │ ├── gnn.tif │ │ ├── shade.tif │ │ ├── sin_aspect.tif │ │ ├── slope.tif │ │ ├── test_stands.dbf │ │ ├── test_stands.prj │ │ ├── test_stands.qpj │ │ ├── test_stands.shp │ │ ├── test_stands.shx │ │ ├── test_stands.zip │ │ ├── test_stands2.dbf │ │ ├── test_stands2.prj │ │ ├── test_stands2.shp │ │ ├── test_stands2.shx │ │ ├── test_stands_bad.dbf │ │ ├── test_stands_bad.prj │ │ ├── test_stands_bad.qpj │ │ ├── test_stands_bad.shp │ │ ├── test_stands_bad.shx │ │ ├── test_stands_bad.zip │ │ ├── test_stands_condid.dbf │ │ ├── test_stands_condid.prj │ │ ├── test_stands_condid.shp │ │ ├── test_stands_condid.shx │ │ ├── test_stands_holes.zip │ │ ├── test_stands_multi.zip │ │ ├── test_stands_noname.zip │ │ ├── test_stands_utm.zip │ │ └── userinventory │ │ ├── data.db.gz │ │ └── test_stands_condid.zip │ ├── forms.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── check_integrity.py │ │ ├── export_matches.py │ │ ├── import_data.py │ │ ├── import_demo_stands.py │ │ ├── import_gyb.py │ │ └── precache.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200429_1325.py │ └── __init__.py │ ├── models.py │ ├── plots.py │ ├── tasks.py │ ├── templates │ └── trees │ │ ├── carbongroup_form.html │ │ ├── myrx_form.html │ │ ├── nearest_plot_results.html │ │ ├── scenario_form.html │ │ ├── scenariostand_form.html │ │ ├── stand_form.html │ │ ├── stand_list_nn.html │ │ └── strata_form.html │ ├── tests │ ├── .coverage │ ├── __init__.py │ ├── data │ │ ├── test_shapes2.dbf │ │ ├── test_shapes2.prj │ │ ├── test_shapes2.qpj │ │ ├── test_shapes2.shp │ │ └── test_shapes2.shx │ ├── selenium_bad.py │ ├── test_carbon_group_models.py │ ├── test_chain_of_ops.py │ ├── test_functional_api.py │ ├── test_identity.py │ ├── test_identity2.py │ ├── test_nearest.py │ ├── test_plots │ │ ├── test1.json │ │ ├── test2.json │ │ └── test3.json │ ├── test_zonal.py │ └── unittests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── media ├── OpenLayers.js ├── WestSideCascades_RXTree.xml ├── common │ ├── bootstrap.cyborg.css │ ├── bootstrap.spacelab.css │ ├── css │ │ └── decisiontree.css │ ├── img │ │ ├── ajax-loader.gif │ │ ├── ecotrust_logo.png │ │ ├── ecotrust_logo08_300dpi.png │ │ ├── ecotrust_logo_small.png │ │ ├── favicon.ico │ │ └── info-icon.png │ ├── js │ │ ├── breadcrumbs.js │ │ ├── cashflow.js │ │ ├── chart.js │ │ ├── decisiontree.js │ │ ├── geosearch.js │ │ ├── hash_routing.js │ │ ├── init.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.easing.1.3.js │ │ ├── jquery.form.js │ │ ├── jquery.scrollTo-1.3.3-min.js │ │ ├── jquery.ui.slider.js │ │ ├── json2.js │ │ ├── knockout-2.1.0.js │ │ ├── knockout.mapping-latest.js │ │ ├── revenue.js │ │ ├── strata.js │ │ ├── timemap.js │ │ └── underscore.string.min.js │ ├── property.js │ ├── scenario.js │ ├── stand.js │ ├── strata.js │ ├── styles.js │ ├── trees.css │ └── trees.js ├── d3_stand_group_test │ ├── Chrisdesign_Tree_silhouettes.svg │ ├── d3.v3.min.js │ ├── testd3.html │ ├── tree.svg │ └── trees.html ├── down.html ├── font │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.svgz │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── google.css ├── img │ ├── ajax-loader.gif │ ├── blank.gif │ ├── cloud-popup-relative.png │ ├── drag-rectangle-off.png │ ├── drag-rectangle-on.png │ ├── drawing_stands.gif │ ├── east-mini.png │ ├── forest_photos │ │ ├── Nursery-log-1-full-sat.jpg │ │ ├── drift_creek.jpg │ │ ├── forest-clouds-866-full-sat.jpg │ │ ├── garibaldi.jpg │ │ ├── hills-0038-full-sat.jpg │ │ ├── jedsmith.jpg │ │ ├── pine-jondavidnelson.jpg │ │ └── walkers-205-full-sat.jpg │ ├── fsp_carousel.jpg │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── help │ │ ├── getting-help.png │ │ ├── walkthrough_clip_image002.png │ │ ├── walkthrough_clip_image004.png │ │ ├── walkthrough_clip_image006.png │ │ ├── walkthrough_clip_image008.png │ │ ├── walkthrough_clip_image010.png │ │ ├── walkthrough_clip_image012.png │ │ ├── walkthrough_clip_image014.png │ │ ├── walkthrough_clip_image016.png │ │ ├── walkthrough_clip_image018.png │ │ ├── walkthrough_clip_image020.png │ │ ├── walkthrough_clip_image022.png │ │ ├── walkthrough_clip_image024.png │ │ ├── walkthrough_clip_image026.png │ │ ├── walkthrough_clip_image028.png │ │ ├── walkthrough_clip_image030.png │ │ ├── walkthrough_clip_image032.png │ │ ├── walkthrough_clip_image034.png │ │ ├── walkthrough_clip_image036.png │ │ ├── walkthrough_clip_image038.png │ │ ├── walkthrough_clip_image040.png │ │ ├── walkthrough_clip_image042.png │ │ ├── walkthrough_clip_image044.png │ │ ├── walkthrough_clip_image046.png │ │ ├── walkthrough_clip_image047.png │ │ ├── walkthrough_clip_image048.png │ │ └── walkthrough_clip_image050.png │ ├── layer-switcher-maximize.png │ ├── layer-switcher-minimize.png │ ├── legends │ │ ├── Crithab.png │ │ ├── Crithab_streams.png │ │ ├── LOT_counties.png │ │ ├── LOT_natconseasedb.png │ │ ├── LOT_parcels.png │ │ ├── LOT_plss.png │ │ ├── LOT_protareas.png │ │ ├── LOT_streambuffers.png │ │ ├── LOT_streams.png │ │ ├── LOT_watersheds.png │ │ ├── LOT_wetlands.png │ │ ├── Landslide_hazard_zones.PNG │ │ ├── USFSMillFacilities.png │ │ └── WA_Natural_heritage_program.PNG │ ├── lot-sprite.png │ ├── marker-blue.png │ ├── marker-gold.png │ ├── marker-green.png │ ├── marker.png │ ├── measuring-stick-off.png │ ├── measuring-stick-on.png │ ├── north-mini.png │ ├── panning-hand-off.png │ ├── panning-hand-on.png │ ├── partner_logos │ │ ├── NRCS_Logo.png │ │ ├── NRCS_Logo_260x120.png │ │ ├── ecotrust_logo08.png │ │ ├── ecotrust_logo08_260x120.png │ │ ├── murdock.jpg │ │ └── murdock_260x120.jpg │ ├── screenshots │ │ ├── screen1.png │ │ ├── screen2.png │ │ └── screen3.png │ ├── slider.png │ ├── soil_legend.png │ ├── south-mini.png │ ├── src │ │ └── lot-sprite.psd │ ├── stand_vol │ │ ├── 100yr.jpg │ │ ├── 10yr.jpg │ │ ├── 20yr.jpg │ │ └── 50yr.jpg │ ├── svs.gif │ ├── svs.png │ ├── svs_sample │ │ ├── svs1.png │ │ ├── svs2.png │ │ ├── svs3.png │ │ ├── svs4.png │ │ ├── svs5.png │ │ └── svs6.png │ ├── temp_rx.jpg │ ├── todo.gif │ ├── west-mini.png │ ├── zoom-minus-mini.png │ ├── zoom-plus-mini.png │ ├── zoom-world-mini.png │ └── zoombar.png ├── jqplot │ ├── MIT-LICENSE.txt │ ├── README.txt │ ├── changes.txt │ ├── copyright.txt │ ├── excanvas.js │ ├── excanvas.min.js │ ├── gpl-2.0.txt │ ├── jqPlotCssStyling.txt │ ├── jqPlotOptions.txt │ ├── jquery.jqplot.css │ ├── jquery.jqplot.js │ ├── jquery.jqplot.min.css │ ├── jquery.jqplot.min.js │ ├── jquery.js │ ├── jquery.min.js │ ├── optionsTutorial.txt │ ├── plugins │ │ ├── jqplot.BezierCurveRenderer.js │ │ ├── jqplot.BezierCurveRenderer.min.js │ │ ├── jqplot.barRenderer.js │ │ ├── jqplot.barRenderer.min.js │ │ ├── jqplot.blockRenderer.js │ │ ├── jqplot.blockRenderer.min.js │ │ ├── jqplot.bubbleRenderer.js │ │ ├── jqplot.bubbleRenderer.min.js │ │ ├── jqplot.canvasAxisLabelRenderer.js │ │ ├── jqplot.canvasAxisLabelRenderer.min.js │ │ ├── jqplot.canvasAxisTickRenderer.js │ │ ├── jqplot.canvasAxisTickRenderer.min.js │ │ ├── jqplot.canvasOverlay.js │ │ ├── jqplot.canvasOverlay.min.js │ │ ├── jqplot.canvasTextRenderer.js │ │ ├── jqplot.canvasTextRenderer.min.js │ │ ├── jqplot.categoryAxisRenderer.js │ │ ├── jqplot.categoryAxisRenderer.min.js │ │ ├── jqplot.ciParser.js │ │ ├── jqplot.ciParser.min.js │ │ ├── jqplot.cursor.js │ │ ├── jqplot.cursor.min.js │ │ ├── jqplot.dateAxisRenderer.js │ │ ├── jqplot.dateAxisRenderer.min.js │ │ ├── jqplot.donutRenderer.js │ │ ├── jqplot.donutRenderer.min.js │ │ ├── jqplot.dragable.js │ │ ├── jqplot.dragable.min.js │ │ ├── jqplot.enhancedLegendRenderer.js │ │ ├── jqplot.enhancedLegendRenderer.min.js │ │ ├── jqplot.funnelRenderer.js │ │ ├── jqplot.funnelRenderer.min.js │ │ ├── jqplot.highlighter.js │ │ ├── jqplot.highlighter.min - Copy.js │ │ ├── jqplot.highlighter.min.js │ │ ├── jqplot.json2.js │ │ ├── jqplot.json2.min.js │ │ ├── jqplot.logAxisRenderer.js │ │ ├── jqplot.logAxisRenderer.min.js │ │ ├── jqplot.mekkoAxisRenderer.js │ │ ├── jqplot.mekkoAxisRenderer.min.js │ │ ├── jqplot.mekkoRenderer.js │ │ ├── jqplot.mekkoRenderer.min.js │ │ ├── jqplot.meterGaugeRenderer.js │ │ ├── jqplot.meterGaugeRenderer.min.js │ │ ├── jqplot.mobile.js │ │ ├── jqplot.mobile.min.js │ │ ├── jqplot.ohlcRenderer.js │ │ ├── jqplot.ohlcRenderer.min.js │ │ ├── jqplot.pieRenderer.js │ │ ├── jqplot.pieRenderer.min.js │ │ ├── jqplot.pointLabels.js │ │ ├── jqplot.pointLabels.min.js │ │ ├── jqplot.pyramidAxisRenderer.js │ │ ├── jqplot.pyramidAxisRenderer.min.js │ │ ├── jqplot.pyramidGridRenderer.js │ │ ├── jqplot.pyramidGridRenderer.min.js │ │ ├── jqplot.pyramidRenderer.js │ │ ├── jqplot.pyramidRenderer.min.js │ │ ├── jqplot.trendline.js │ │ └── jqplot.trendline.min.js │ └── usage.txt ├── maintenance.html ├── style.css ├── support │ ├── amplify.js │ ├── bootstrap-select │ │ ├── bootstrap-select.min.css │ │ └── bootstrap-select.min.js │ ├── bootstrap.2-32.min.js │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap.css │ │ │ └── font-awesome.css │ │ ├── ico │ │ │ ├── bootstrap-apple-114x114.png │ │ │ ├── bootstrap-apple-57x57.png │ │ │ ├── bootstrap-apple-72x72.png │ │ │ └── favicon.ico │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── README.md │ │ │ ├── bootstrap-alert.js │ │ │ ├── bootstrap-button.js │ │ │ ├── bootstrap-carousel.js │ │ │ ├── bootstrap-collapse.js │ │ │ ├── bootstrap-dropdown.js │ │ │ ├── bootstrap-modal.js │ │ │ ├── bootstrap-popover.js │ │ │ ├── bootstrap-scrollspy.js │ │ │ ├── bootstrap-tab.js │ │ │ ├── bootstrap-tooltip.js │ │ │ ├── bootstrap-transition.js │ │ │ ├── bootstrap-typeahead.js │ │ │ ├── google-code-prettify │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ │ └── jquery.js │ ├── knockout-2.0.0.js │ ├── knockout-custom-bindings.js │ ├── knockout.mapping-latest.js │ ├── select2.css │ ├── select2.js │ ├── select2.png │ └── spinner.gif ├── test │ ├── fixtures │ │ ├── properties.js │ │ └── workspace.js │ ├── index.html │ ├── lib │ │ ├── qunit.css │ │ ├── qunit.js │ │ ├── sinon-1.3.2.js │ │ ├── sinon-qunit-1.0.0.js │ │ └── testutils.js │ ├── test_breadcrumbs.html │ └── test_breadcrumbs.js ├── tests │ └── index.html └── theme │ └── default │ ├── framedCloud.css │ ├── google.css │ ├── google.tidy.css │ ├── ie6-style.css │ ├── ie6-style.tidy.css │ ├── img │ ├── add_point_off.png │ ├── add_point_on.png │ ├── blank.gif │ ├── close.gif │ ├── drag-rectangle-off.png │ ├── drag-rectangle-on.png │ ├── draw_line_off.png │ ├── draw_line_on.png │ ├── draw_point_off.png │ ├── draw_point_on.png │ ├── draw_polygon_off.png │ ├── draw_polygon_on.png │ ├── editing_tool_bar.png │ ├── move_feature_off.png │ ├── move_feature_on.png │ ├── navigation_history.png │ ├── overview_replacement.gif │ ├── pan-panel-NOALPHA.png │ ├── pan-panel.png │ ├── pan_off.png │ ├── pan_on.png │ ├── panning-hand-off.png │ ├── panning-hand-on.png │ ├── remove_point_off.png │ ├── remove_point_on.png │ ├── ruler.png │ ├── save_features_off.png │ ├── save_features_on.png │ ├── view_next_off.png │ ├── view_next_on.png │ ├── view_previous_off.png │ ├── view_previous_on.png │ ├── zoom-panel-NOALPHA.png │ └── zoom-panel.png │ ├── style.css │ └── style.tidy.css ├── requirements.txt ├── scripts ├── blacklist │ ├── blacklist.csv │ └── generate_blacklist_sql.py ├── gather_subset │ ├── .gitignore │ ├── gather_10pct.py │ ├── gather_10pct_step2.py │ ├── gather_10pct_step3.py │ └── matches_without_age.txt ├── gnn.py ├── graph_models.sh ├── identity.sql ├── nearestneighbor_plotselection │ ├── .ipynb_checkpoints │ │ ├── Impute Missing Ages for IDB_v2.0 Conditions-checkpoint.ipynb │ │ ├── Impute Missing Ages for PNWFIADB 2011 Conditions-checkpoint.ipynb │ │ ├── Preparing TREELIVE_SUMMARY tables for nearest neighbor-checkpoint.ipynb │ │ └── Read Forest Planner user forest types + Update FVS_species_crosswalk-checkpoint.ipynb │ ├── Impute Missing Ages for IDB_v2.0 Conditions.ipynb │ ├── Impute Missing Ages for PNWFIADB 2011 Conditions.ipynb │ ├── Preparing TREELIVE_SUMMARY tables for nearest neighbor.ipynb │ └── Read Forest Planner user forest types + Update FVS_species_crosswalk.ipynb ├── openlayers_build.sh ├── openlayers_lot.cfg ├── process_dems.sh ├── puppet │ ├── manifests │ │ ├── files │ │ │ ├── celerybeat.conf │ │ │ ├── celeryd.erb │ │ │ ├── celeryflower.erb │ │ │ ├── celerymon.erb │ │ │ ├── cleangeometry.sql │ │ │ ├── forestplanner-ssl.nginx │ │ │ ├── forestplanner.nginx │ │ │ ├── forestplanner.uwsgi.erb │ │ │ ├── go │ │ │ ├── settings_template.py │ │ │ ├── settings_template.py.erb │ │ │ ├── settings_vagrant.py │ │ │ ├── uwsgi.init.erb │ │ │ ├── vhost.conf │ │ │ └── wsgi.py.erb │ │ └── lot.pp │ └── modules │ │ ├── nullmailer │ │ ├── GPL-3 │ │ ├── Modulefile │ │ ├── README.md │ │ ├── manifests │ │ │ ├── config.pp │ │ │ ├── init.pp │ │ │ ├── package.pp │ │ │ ├── params.pp │ │ │ └── service.pp │ │ └── metadata.json │ │ ├── postgresql │ │ ├── LICENSE │ │ ├── README.md │ │ ├── files │ │ │ └── pg_hba.conf │ │ ├── manifests │ │ │ ├── client.pp │ │ │ ├── database.pp │ │ │ ├── init.pp │ │ │ ├── python.pp │ │ │ ├── ruby.pp │ │ │ ├── server.pp │ │ │ └── user.pp │ │ └── templates │ │ │ └── postgresql.conf.erb │ │ ├── python │ │ ├── LICENSE │ │ ├── README.md │ │ ├── manifests │ │ │ ├── dev.pp │ │ │ ├── gunicorn.pp │ │ │ ├── gunicorn │ │ │ │ └── instance.pp │ │ │ ├── init.pp │ │ │ ├── pip │ │ │ │ ├── install.pp │ │ │ │ └── requirements.pp │ │ │ ├── venv.pp │ │ │ └── venv │ │ │ │ └── isolate.pp │ │ └── templates │ │ │ ├── gunicorn.init.erb │ │ │ └── gunicorn.logrotate.erb │ │ ├── stdlib │ │ ├── CHANGELOG │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.markdown │ │ ├── README_DEVELOPER.markdown │ │ ├── README_SPECS.markdown │ │ ├── RELEASE_PROCESS.markdown │ │ ├── Rakefile │ │ ├── lib │ │ │ ├── facter │ │ │ │ ├── facter_dot_d.rb │ │ │ │ ├── pe_version.rb │ │ │ │ ├── puppet_vardir.rb │ │ │ │ ├── root_home.rb │ │ │ │ └── util │ │ │ │ │ └── puppet_settings.rb │ │ │ └── puppet │ │ │ │ ├── parser │ │ │ │ └── functions │ │ │ │ │ ├── abs.rb │ │ │ │ │ ├── any2array.rb │ │ │ │ │ ├── bool2num.rb │ │ │ │ │ ├── capitalize.rb │ │ │ │ │ ├── chomp.rb │ │ │ │ │ ├── chop.rb │ │ │ │ │ ├── concat.rb │ │ │ │ │ ├── count.rb │ │ │ │ │ ├── defined_with_params.rb │ │ │ │ │ ├── delete.rb │ │ │ │ │ ├── delete_at.rb │ │ │ │ │ ├── dirname.rb │ │ │ │ │ ├── downcase.rb │ │ │ │ │ ├── empty.rb │ │ │ │ │ ├── ensure_packages.rb │ │ │ │ │ ├── ensure_resource.rb │ │ │ │ │ ├── flatten.rb │ │ │ │ │ ├── floor.rb │ │ │ │ │ ├── fqdn_rotate.rb │ │ │ │ │ ├── get_module_path.rb │ │ │ │ │ ├── getparam.rb │ │ │ │ │ ├── getvar.rb │ │ │ │ │ ├── grep.rb │ │ │ │ │ ├── has_interface_with.rb │ │ │ │ │ ├── has_ip_address.rb │ │ │ │ │ ├── has_ip_network.rb │ │ │ │ │ ├── has_key.rb │ │ │ │ │ ├── hash.rb │ │ │ │ │ ├── is_array.rb │ │ │ │ │ ├── is_domain_name.rb │ │ │ │ │ ├── is_float.rb │ │ │ │ │ ├── is_function_available.rb │ │ │ │ │ ├── is_hash.rb │ │ │ │ │ ├── is_integer.rb │ │ │ │ │ ├── is_ip_address.rb │ │ │ │ │ ├── is_mac_address.rb │ │ │ │ │ ├── is_numeric.rb │ │ │ │ │ ├── is_string.rb │ │ │ │ │ ├── join.rb │ │ │ │ │ ├── join_keys_to_values.rb │ │ │ │ │ ├── keys.rb │ │ │ │ │ ├── loadyaml.rb │ │ │ │ │ ├── lstrip.rb │ │ │ │ │ ├── max.rb │ │ │ │ │ ├── member.rb │ │ │ │ │ ├── merge.rb │ │ │ │ │ ├── min.rb │ │ │ │ │ ├── num2bool.rb │ │ │ │ │ ├── parsejson.rb │ │ │ │ │ ├── parseyaml.rb │ │ │ │ │ ├── pick.rb │ │ │ │ │ ├── prefix.rb │ │ │ │ │ ├── range.rb │ │ │ │ │ ├── reject.rb │ │ │ │ │ ├── reverse.rb │ │ │ │ │ ├── rstrip.rb │ │ │ │ │ ├── shuffle.rb │ │ │ │ │ ├── size.rb │ │ │ │ │ ├── sort.rb │ │ │ │ │ ├── squeeze.rb │ │ │ │ │ ├── str2bool.rb │ │ │ │ │ ├── str2saltedsha512.rb │ │ │ │ │ ├── strftime.rb │ │ │ │ │ ├── strip.rb │ │ │ │ │ ├── suffix.rb │ │ │ │ │ ├── swapcase.rb │ │ │ │ │ ├── time.rb │ │ │ │ │ ├── to_bytes.rb │ │ │ │ │ ├── type.rb │ │ │ │ │ ├── unique.rb │ │ │ │ │ ├── upcase.rb │ │ │ │ │ ├── uriescape.rb │ │ │ │ │ ├── validate_absolute_path.rb │ │ │ │ │ ├── validate_array.rb │ │ │ │ │ ├── validate_augeas.rb │ │ │ │ │ ├── validate_bool.rb │ │ │ │ │ ├── validate_cmd.rb │ │ │ │ │ ├── validate_hash.rb │ │ │ │ │ ├── validate_re.rb │ │ │ │ │ ├── validate_slength.rb │ │ │ │ │ ├── validate_string.rb │ │ │ │ │ ├── values.rb │ │ │ │ │ ├── values_at.rb │ │ │ │ │ └── zip.rb │ │ │ │ ├── provider │ │ │ │ └── file_line │ │ │ │ │ └── ruby.rb │ │ │ │ └── type │ │ │ │ ├── anchor.rb │ │ │ │ └── file_line.rb │ │ ├── manifests │ │ │ ├── init.pp │ │ │ └── stages.pp │ │ ├── metadata.json │ │ ├── spec │ │ │ ├── classes │ │ │ │ └── anchor_spec.rb │ │ │ ├── fixtures │ │ │ │ └── manifests │ │ │ │ │ └── site.pp │ │ │ ├── functions │ │ │ │ ├── defined_with_params_spec.rb │ │ │ │ ├── ensure_packages_spec.rb │ │ │ │ ├── ensure_resource_spec.rb │ │ │ │ └── getparam_spec.rb │ │ │ ├── monkey_patches │ │ │ │ ├── alias_should_to_must.rb │ │ │ │ └── publicize_methods.rb │ │ │ ├── spec.opts │ │ │ ├── spec_helper.rb │ │ │ ├── unit │ │ │ │ ├── facter │ │ │ │ │ ├── pe_required_facts_spec.rb │ │ │ │ │ ├── pe_version_spec.rb │ │ │ │ │ ├── root_home_spec.rb │ │ │ │ │ └── util │ │ │ │ │ │ └── puppet_settings_spec.rb │ │ │ │ └── puppet │ │ │ │ │ ├── parser │ │ │ │ │ └── functions │ │ │ │ │ │ ├── abs_spec.rb │ │ │ │ │ │ ├── any2array_spec.rb │ │ │ │ │ │ ├── bool2num_spec.rb │ │ │ │ │ │ ├── capitalize_spec.rb │ │ │ │ │ │ ├── chomp_spec.rb │ │ │ │ │ │ ├── chop_spec.rb │ │ │ │ │ │ ├── concat_spec.rb │ │ │ │ │ │ ├── count_spec.rb │ │ │ │ │ │ ├── delete_at_spec.rb │ │ │ │ │ │ ├── delete_spec.rb │ │ │ │ │ │ ├── dirname_spec.rb │ │ │ │ │ │ ├── downcase_spec.rb │ │ │ │ │ │ ├── empty_spec.rb │ │ │ │ │ │ ├── flatten_spec.rb │ │ │ │ │ │ ├── floor_spec.rb │ │ │ │ │ │ ├── fqdn_rotate_spec.rb │ │ │ │ │ │ ├── get_module_path_spec.rb │ │ │ │ │ │ ├── getvar_spec.rb │ │ │ │ │ │ ├── grep_spec.rb │ │ │ │ │ │ ├── has_interface_with_spec.rb │ │ │ │ │ │ ├── has_ip_address_spec.rb │ │ │ │ │ │ ├── has_ip_network_spec.rb │ │ │ │ │ │ ├── has_key_spec.rb │ │ │ │ │ │ ├── hash_spec.rb │ │ │ │ │ │ ├── is_array_spec.rb │ │ │ │ │ │ ├── is_domain_name_spec.rb │ │ │ │ │ │ ├── is_float_spec.rb │ │ │ │ │ │ ├── is_function_available.rb │ │ │ │ │ │ ├── is_hash_spec.rb │ │ │ │ │ │ ├── is_integer_spec.rb │ │ │ │ │ │ ├── is_ip_address_spec.rb │ │ │ │ │ │ ├── is_mac_address_spec.rb │ │ │ │ │ │ ├── is_numeric_spec.rb │ │ │ │ │ │ ├── is_string_spec.rb │ │ │ │ │ │ ├── join_keys_to_values_spec.rb │ │ │ │ │ │ ├── join_spec.rb │ │ │ │ │ │ ├── keys_spec.rb │ │ │ │ │ │ ├── lstrip_spec.rb │ │ │ │ │ │ ├── max_spec.rb │ │ │ │ │ │ ├── member_spec.rb │ │ │ │ │ │ ├── merge_spec.rb │ │ │ │ │ │ ├── min_spec.rb │ │ │ │ │ │ ├── num2bool_spec.rb │ │ │ │ │ │ ├── parsejson_spec.rb │ │ │ │ │ │ ├── parseyaml_spec.rb │ │ │ │ │ │ ├── pick_spec.rb │ │ │ │ │ │ ├── prefix_spec.rb │ │ │ │ │ │ ├── range_spec.rb │ │ │ │ │ │ ├── reject_spec.rb │ │ │ │ │ │ ├── reverse_spec.rb │ │ │ │ │ │ ├── rstrip_spec.rb │ │ │ │ │ │ ├── shuffle_spec.rb │ │ │ │ │ │ ├── size_spec.rb │ │ │ │ │ │ ├── sort_spec.rb │ │ │ │ │ │ ├── squeeze_spec.rb │ │ │ │ │ │ ├── str2bool_spec.rb │ │ │ │ │ │ ├── str2saltedsha512_spec.rb │ │ │ │ │ │ ├── strftime_spec.rb │ │ │ │ │ │ ├── strip_spec.rb │ │ │ │ │ │ ├── suffix_spec.rb │ │ │ │ │ │ ├── swapcase_spec.rb │ │ │ │ │ │ ├── time_spec.rb │ │ │ │ │ │ ├── to_bytes_spec.rb │ │ │ │ │ │ ├── type_spec.rb │ │ │ │ │ │ ├── unique_spec.rb │ │ │ │ │ │ ├── upcase_spec.rb │ │ │ │ │ │ ├── uriescape_spec.rb │ │ │ │ │ │ ├── validate_absolute_path_spec.rb │ │ │ │ │ │ ├── validate_array_spec.rb │ │ │ │ │ │ ├── validate_augeas_spec.rb │ │ │ │ │ │ ├── validate_bool_spec.rb │ │ │ │ │ │ ├── validate_cmd_spec.rb │ │ │ │ │ │ ├── validate_hash_spec.rb │ │ │ │ │ │ ├── validate_re_spec.rb │ │ │ │ │ │ ├── validate_slength_spec.rb │ │ │ │ │ │ ├── validate_string_spec.rb │ │ │ │ │ │ ├── values_at_spec.rb │ │ │ │ │ │ ├── values_spec.rb │ │ │ │ │ │ └── zip_spec.rb │ │ │ │ │ ├── provider │ │ │ │ │ └── file_line │ │ │ │ │ │ └── ruby_spec.rb │ │ │ │ │ └── type │ │ │ │ │ ├── anchor_spec.rb │ │ │ │ │ └── file_line_spec.rb │ │ │ └── watchr.rb │ │ └── tests │ │ │ ├── file_line.pp │ │ │ ├── has_interface_with.pp │ │ │ ├── has_ip_address.pp │ │ │ ├── has_ip_network.pp │ │ │ └── init.pp │ │ └── sysctl │ │ ├── ChangeLog │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README.md │ │ ├── manifests │ │ ├── base.pp │ │ └── init.pp │ │ ├── metadata.json │ │ └── tests │ │ ├── base.pp │ │ └── init.pp ├── quick_user_summary.py ├── sublime_text_syntax │ ├── FVSKeyfile.JSON-tmLanguage │ ├── FVSKeyfile.tmLanguage │ └── README.md ├── test_email.py └── user_stats.py └── trees_test ├── original_data ├── BaseRx │ ├── 1q │ ├── BF_01.key │ ├── BM_01.key │ ├── GO_01.key │ └── plant │ │ ├── Plant_Readme.txt │ │ ├── _natural.key │ │ ├── plant_alt.key │ │ ├── plant_bus.key │ │ └── thin.key ├── SlfTbl_Elliott_VEGLBL.txt ├── Treelist_Elliott_VEGLBL.txt └── shp │ ├── MgtBasins.dbf │ ├── MgtBasins.prj │ ├── MgtBasins.sbn │ ├── MgtBasins.sbx │ ├── MgtBasins.shp │ ├── MgtBasins.shp.xml │ └── MgtBasins.shx └── scripts ├── CreateOffsets.py ├── StandProcessor.py ├── _ipdb.py ├── adjacency.py ├── cluster_test.R ├── create_offsets_pn_variant.pl ├── go.py ├── go.sh ├── gy_age_extract.pl ├── gy_carbon_extract.pl ├── gy_cut_extract.pl ├── gy_live_extract.pl ├── init.cfg ├── log ├── proc_gy.php └── sch_inputs.aml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/Vagrantfile -------------------------------------------------------------------------------- /celeryflower-passwords.template: -------------------------------------------------------------------------------- 1 | user:RICJv6VGl05xQ:TODO this is 'pass', CHANGEME!!! -------------------------------------------------------------------------------- /docs/mockups/assets/Adobe-PDF-Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/assets/Adobe-PDF-Logo.jpg -------------------------------------------------------------------------------- /docs/mockups/assets/harvest-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/assets/harvest-map.png -------------------------------------------------------------------------------- /docs/mockups/assets/login-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/assets/login-map.png -------------------------------------------------------------------------------- /docs/mockups/assets/lot-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/assets/lot-logo.png -------------------------------------------------------------------------------- /docs/mockups/assets/manage-stands-creating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/assets/manage-stands-creating.png -------------------------------------------------------------------------------- /docs/mockups/assets/manage-stands-initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/assets/manage-stands-initial.png -------------------------------------------------------------------------------- /docs/mockups/assets/map-property-initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/assets/map-property-initial.png -------------------------------------------------------------------------------- /docs/mockups/assets/property-polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/assets/property-polygon.png -------------------------------------------------------------------------------- /docs/mockups/assets/stand-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/assets/stand-map.png -------------------------------------------------------------------------------- /docs/mockups/assets/stands-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/assets/stands-map.png -------------------------------------------------------------------------------- /docs/mockups/blank.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/blank.bmml -------------------------------------------------------------------------------- /docs/mockups/login-screen.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/login-screen.bmml -------------------------------------------------------------------------------- /docs/mockups/manage-properties-creating.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/manage-properties-creating.bmml -------------------------------------------------------------------------------- /docs/mockups/manage-properties-initial.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/manage-properties-initial.bmml -------------------------------------------------------------------------------- /docs/mockups/manage-properties-list.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/manage-properties-list.bmml -------------------------------------------------------------------------------- /docs/mockups/manage-stands-creating.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/manage-stands-creating.bmml -------------------------------------------------------------------------------- /docs/mockups/manage-stands-initial.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/manage-stands-initial.bmml -------------------------------------------------------------------------------- /docs/mockups/manage-stands-list.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/manage-stands-list.bmml -------------------------------------------------------------------------------- /docs/mockups/manage-strata-applying.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/manage-strata-applying.bmml -------------------------------------------------------------------------------- /docs/mockups/manage-strata-defining.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/manage-strata-defining.bmml -------------------------------------------------------------------------------- /docs/mockups/old/create-stand-original.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/old/create-stand-original.bmml -------------------------------------------------------------------------------- /docs/mockups/pdfs/create-stand.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/pdfs/create-stand.pdf -------------------------------------------------------------------------------- /docs/mockups/pdfs/mockups_20120406.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/pdfs/mockups_20120406.pdf -------------------------------------------------------------------------------- /docs/mockups/pdfs/strata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/pdfs/strata.pdf -------------------------------------------------------------------------------- /docs/mockups/stand-analysis-cashflow.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/stand-analysis-cashflow.bmml -------------------------------------------------------------------------------- /docs/mockups/stand-analysis-map.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/stand-analysis-map.bmml -------------------------------------------------------------------------------- /docs/mockups/stand-analysis-scenarios.bmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/mockups/stand-analysis-scenarios.bmml -------------------------------------------------------------------------------- /docs/model_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/model_graph.png -------------------------------------------------------------------------------- /docs/user_inventory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/user_inventory/Makefile -------------------------------------------------------------------------------- /docs/user_inventory/doc_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/user_inventory/doc_template.tex -------------------------------------------------------------------------------- /docs/user_inventory/user_inventory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/user_inventory/user_inventory.md -------------------------------------------------------------------------------- /docs/user_inventory/user_inventory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/user_inventory/user_inventory.pdf -------------------------------------------------------------------------------- /docs/user_inventory/workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/docs/user_inventory/workflows.png -------------------------------------------------------------------------------- /fab_vars.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/fab_vars.py.template -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/fabfile.py -------------------------------------------------------------------------------- /feature_files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/feature_files/README -------------------------------------------------------------------------------- /gnn_import/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/gnn_import/README -------------------------------------------------------------------------------- /gnn_import/export_gnn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/gnn_import/export_gnn.sh -------------------------------------------------------------------------------- /gnn_import/export_treelive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/gnn_import/export_treelive.sh -------------------------------------------------------------------------------- /gnn_import/load_gnn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/gnn_import/load_gnn.sh -------------------------------------------------------------------------------- /gnn_import/load_treelive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/gnn_import/load_treelive.sh -------------------------------------------------------------------------------- /gnn_import/schema.SPPSZ_ATTR_ALL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/gnn_import/schema.SPPSZ_ATTR_ALL.sql -------------------------------------------------------------------------------- /gnn_import/schema.TREE_LIVE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/gnn_import/schema.TREE_LIVE.sql -------------------------------------------------------------------------------- /gnn_import/schema_gnn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/gnn_import/schema_gnn.sh -------------------------------------------------------------------------------- /gnn_import/schema_treelive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/gnn_import/schema_treelive.sh -------------------------------------------------------------------------------- /idb_import/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/README -------------------------------------------------------------------------------- /idb_import/export_idb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/export_idb.sh -------------------------------------------------------------------------------- /idb_import/load_idb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/load_idb.sh -------------------------------------------------------------------------------- /idb_import/lut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/lut.txt -------------------------------------------------------------------------------- /idb_import/schema.IDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/schema.IDB.sql -------------------------------------------------------------------------------- /idb_import/schema_idb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/schema_idb.sh -------------------------------------------------------------------------------- /idb_import/treelive_summary/pivoted/create_pivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/treelive_summary/pivoted/create_pivot.py -------------------------------------------------------------------------------- /idb_import/treelive_summary/pivoted/create_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/treelive_summary/pivoted/create_sqlite.py -------------------------------------------------------------------------------- /idb_import/treelive_summary/pivoted/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/treelive_summary/pivoted/load.sh -------------------------------------------------------------------------------- /idb_import/treelive_summary/pivoted/read_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/treelive_summary/pivoted/read_pickle.py -------------------------------------------------------------------------------- /idb_import/treelive_summary/pivoted/read_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/treelive_summary/pivoted/read_sqlite.py -------------------------------------------------------------------------------- /idb_import/treelive_summary/unpivoted/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/treelive_summary/unpivoted/load.sh -------------------------------------------------------------------------------- /idb_import/treelive_summary/unpivoted/local_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/treelive_summary/unpivoted/local_util.py -------------------------------------------------------------------------------- /idb_import/treelive_summary/unpivoted/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/idb_import/treelive_summary/unpivoted/schema.sql -------------------------------------------------------------------------------- /logs/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/cost_errors/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /logs/cost_errors/README: -------------------------------------------------------------------------------- 1 | Cost function failures get logged here. -------------------------------------------------------------------------------- /logs/cost_errors/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/logs/cost_errors/test.py -------------------------------------------------------------------------------- /lot/deploy/celery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/deploy/celery -------------------------------------------------------------------------------- /lot/deploy/celery.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/deploy/celery.service -------------------------------------------------------------------------------- /lot/deploy/emperor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/deploy/emperor.ini -------------------------------------------------------------------------------- /lot/deploy/forestplanner.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/deploy/forestplanner.ini -------------------------------------------------------------------------------- /lot/deploy/nginx_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/deploy/nginx_config -------------------------------------------------------------------------------- /lot/deploy/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/deploy/rc.local -------------------------------------------------------------------------------- /lot/deploy/redis.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Redis In-Memory Data Store 3 | After=network.target 4 | -------------------------------------------------------------------------------- /lot/deploy/restart_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/deploy/restart_nginx.sh -------------------------------------------------------------------------------- /lot/deploy/tmpfile_celery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/deploy/tmpfile_celery.conf -------------------------------------------------------------------------------- /lot/deploy/uwsgi.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/deploy/uwsgi.service -------------------------------------------------------------------------------- /lot/discovery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/discovery/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/admin.py -------------------------------------------------------------------------------- /lot/discovery/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/apps.py -------------------------------------------------------------------------------- /lot/discovery/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/fields.py -------------------------------------------------------------------------------- /lot/discovery/fixtures/initial_content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/fixtures/initial_content.json -------------------------------------------------------------------------------- /lot/discovery/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/forms.py -------------------------------------------------------------------------------- /lot/discovery/local_settings.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/discovery/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/migrations/0001_initial.py -------------------------------------------------------------------------------- /lot/discovery/migrations/0002_auto_20190411_1242.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/migrations/0002_auto_20190411_1242.py -------------------------------------------------------------------------------- /lot/discovery/migrations/0004_auto_20190417_1201.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/migrations/0004_auto_20190417_1201.py -------------------------------------------------------------------------------- /lot/discovery/migrations/0005_auto_20190417_1510.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/migrations/0005_auto_20190417_1510.py -------------------------------------------------------------------------------- /lot/discovery/migrations/0006_examplestand_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/migrations/0006_examplestand_content.py -------------------------------------------------------------------------------- /lot/discovery/migrations/0007_auto_20190423_1048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/migrations/0007_auto_20190423_1048.py -------------------------------------------------------------------------------- /lot/discovery/migrations/0008_auto_20190423_1541.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/migrations/0008_auto_20190423_1541.py -------------------------------------------------------------------------------- /lot/discovery/migrations/0009_auto_20190427_1944.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/migrations/0009_auto_20190427_1944.py -------------------------------------------------------------------------------- /lot/discovery/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/discovery/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/models.py -------------------------------------------------------------------------------- /lot/discovery/scripts/restart_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/scripts/restart_services.sh -------------------------------------------------------------------------------- /lot/discovery/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/settings.py -------------------------------------------------------------------------------- /lot/discovery/static/discovery/css/compare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/css/compare.css -------------------------------------------------------------------------------- /lot/discovery/static/discovery/css/discovery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/css/discovery.css -------------------------------------------------------------------------------- /lot/discovery/static/discovery/css/flatpages.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/discovery/static/discovery/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/css/footer.css -------------------------------------------------------------------------------- /lot/discovery/static/discovery/css/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/css/grid.css -------------------------------------------------------------------------------- /lot/discovery/static/discovery/css/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/css/map.css -------------------------------------------------------------------------------- /lot/discovery/static/discovery/css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/css/page.css -------------------------------------------------------------------------------- /lot/discovery/static/discovery/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/css/profile.css -------------------------------------------------------------------------------- /lot/discovery/static/discovery/css/tooltips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/css/tooltips.css -------------------------------------------------------------------------------- /lot/discovery/static/discovery/dependencies/d3/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/dependencies/d3/API.md -------------------------------------------------------------------------------- /lot/discovery/static/discovery/dependencies/d3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/dependencies/d3/LICENSE -------------------------------------------------------------------------------- /lot/discovery/static/discovery/dependencies/d3/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/dependencies/d3/d3.js -------------------------------------------------------------------------------- /lot/discovery/static/discovery/dependencies/ol-layerswitcher/LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT (c) Matt Walker. 2 | -------------------------------------------------------------------------------- /lot/discovery/static/discovery/img/Evergreen_(PSF).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/img/Evergreen_(PSF).png -------------------------------------------------------------------------------- /lot/discovery/static/discovery/img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/img/README.md -------------------------------------------------------------------------------- /lot/discovery/static/discovery/img/Trees_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/img/Trees_icon.png -------------------------------------------------------------------------------- /lot/discovery/static/discovery/img/Trees_icon_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/img/Trees_icon_wide.png -------------------------------------------------------------------------------- /lot/discovery/static/discovery/js/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/js/compare.js -------------------------------------------------------------------------------- /lot/discovery/static/discovery/js/discovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/js/discovery.js -------------------------------------------------------------------------------- /lot/discovery/static/discovery/js/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/js/map.js -------------------------------------------------------------------------------- /lot/discovery/static/discovery/js/map/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/js/map/actions.js -------------------------------------------------------------------------------- /lot/discovery/static/discovery/js/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/js/profile.js -------------------------------------------------------------------------------- /lot/discovery/static/discovery/js/stands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/js/stands.js -------------------------------------------------------------------------------- /lot/discovery/static/discovery/js/strata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/static/discovery/js/strata.js -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/about.html: -------------------------------------------------------------------------------- 1 | {% extends 'discovery/common/base.html' %} 2 | -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/account/login.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/account/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/account/profile.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/account/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/account/reset.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/account/signup.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/collect_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/collect_data.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/common/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/common/base.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/common/breadcrumbs.html: -------------------------------------------------------------------------------- 1 | {% extends 'discovery/common/base.html' %} 2 | -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/common/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/common/footer.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/common/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/common/grid.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/common/hamburger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/common/hamburger.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/common/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/common/header.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/common/modal.html: -------------------------------------------------------------------------------- 1 | {% extends 'discovery/common/base.html' %} 2 | -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/common/strata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/common/strata.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/compare_outcomes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/compare_outcomes.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/documentation.html: -------------------------------------------------------------------------------- 1 | {% extends 'discovery/common/base.html' %} 2 | -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/forest_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/forest_profile.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/landing.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/map.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/page.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/report.html: -------------------------------------------------------------------------------- 1 | {% extends 'discovery/page.html' %} 2 | {% load flatblocks static %} 3 | -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/stand/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/stand/modal.html -------------------------------------------------------------------------------- /lot/discovery/templates/discovery/stand_grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/discovery/stand_grid.html -------------------------------------------------------------------------------- /lot/discovery/templates/flatpages/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/templates/flatpages/default.html -------------------------------------------------------------------------------- /lot/discovery/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/tests.py -------------------------------------------------------------------------------- /lot/discovery/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/urls.py -------------------------------------------------------------------------------- /lot/discovery/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/views.py -------------------------------------------------------------------------------- /lot/discovery/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/discovery/widgets.py -------------------------------------------------------------------------------- /lot/functional_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/functional_tests.py -------------------------------------------------------------------------------- /lot/landmapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/landmapper/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/admin.py -------------------------------------------------------------------------------- /lot/landmapper/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/apps.py -------------------------------------------------------------------------------- /lot/landmapper/bak/LM_form.bak.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/bak/LM_form.bak.pdf -------------------------------------------------------------------------------- /lot/landmapper/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/fetch.py -------------------------------------------------------------------------------- /lot/landmapper/fill_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/fill_pdf.py -------------------------------------------------------------------------------- /lot/landmapper/local_settings.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/local_settings.template -------------------------------------------------------------------------------- /lot/landmapper/management/commands/clearcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/management/commands/clearcache.py -------------------------------------------------------------------------------- /lot/landmapper/map_layers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/map_layers/views.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0001_initial.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0002_menupage_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0002_menupage_content.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0003_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0003_property.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0004_auto_20200713_1624.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0004_auto_20200713_1624.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0005_auto_20200730_1318.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0005_auto_20200730_1318.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0008_auto_20200810_2114.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0008_auto_20200810_2114.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0009_auto_20201005_1416.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0009_auto_20201005_1416.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0010_auto_20201005_1653.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0010_auto_20201005_1653.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0011_auto_20201026_1129.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0011_auto_20201026_1129.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0012_soiltype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0012_soiltype.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0013_taxlot_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0013_taxlot_uuid.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0014_auto_20201103_1256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0014_auto_20201103_1256.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0015_auto_20201103_1445.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0015_auto_20201103_1445.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0016_remove_taxlot_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0016_remove_taxlot_uuid.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0017_auto_20201125_1059.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0017_auto_20201125_1059.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0018_auto_20201205_1425.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0018_auto_20201205_1425.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0019_auto_20210707_1147.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0019_auto_20210707_1147.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0020_auto_20210412_1010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0020_auto_20210412_1010.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0021_merge_20210707_1444.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0021_merge_20210707_1444.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0022_auto_20210708_1701.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0022_auto_20210708_1701.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0023_populationpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0023_populationpoint.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0024_auto_20210726_1544.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0024_auto_20210726_1544.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/0025_auto_20211222_0946.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/migrations/0025_auto_20211222_0946.py -------------------------------------------------------------------------------- /lot/landmapper/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/landmapper/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/models.py -------------------------------------------------------------------------------- /lot/landmapper/pdf_templates/LM_Form.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/pdf_templates/LM_Form.pdf -------------------------------------------------------------------------------- /lot/landmapper/pdf_templates/LM_Form_12_soils.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/pdf_templates/LM_Form_12_soils.pdf -------------------------------------------------------------------------------- /lot/landmapper/pdf_templates/LM_Form_sans_forests.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/pdf_templates/LM_Form_sans_forests.pdf -------------------------------------------------------------------------------- /lot/landmapper/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/properties.py -------------------------------------------------------------------------------- /lot/landmapper/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/reports.py -------------------------------------------------------------------------------- /lot/landmapper/scripts/clean_old_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/scripts/clean_old_files.sh -------------------------------------------------------------------------------- /lot/landmapper/scripts/forest_type_field_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/scripts/forest_type_field_map.json -------------------------------------------------------------------------------- /lot/landmapper/scripts/population_field_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/scripts/population_field_map.json -------------------------------------------------------------------------------- /lot/landmapper/scripts/process_forest_types_shp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/scripts/process_forest_types_shp.sh -------------------------------------------------------------------------------- /lot/landmapper/scripts/process_population_shp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/scripts/process_population_shp.sh -------------------------------------------------------------------------------- /lot/landmapper/scripts/process_soils_shp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/scripts/process_soils_shp.sh -------------------------------------------------------------------------------- /lot/landmapper/scripts/process_taxlot_grid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/scripts/process_taxlot_grid.sh -------------------------------------------------------------------------------- /lot/landmapper/scripts/soil_field_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/scripts/soil_field_map.json -------------------------------------------------------------------------------- /lot/landmapper/scripts/taxlot_field_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/scripts/taxlot_field_map.json -------------------------------------------------------------------------------- /lot/landmapper/scripts/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/scripts/translate.py -------------------------------------------------------------------------------- /lot/landmapper/scripts/validate_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/scripts/validate_fields.py -------------------------------------------------------------------------------- /lot/landmapper/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/settings.py -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/css/animations.css -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/css/base.css -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/css/fonts.css -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/css/header.css -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/css/home.css -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/css/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/css/map.css -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/css/print.css -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/css/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/css/report.css -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/fonts/Gotham-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/fonts/Gotham-Bold.otf -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/fonts/Gotham-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/fonts/Gotham-Book.otf -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/img/pin_hollow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/img/pin_hollow.svg -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/img/pin_solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/img/pin_solid.svg -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/img/pin_solid_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/img/pin_solid_red.svg -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/js/create_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/js/create_report.js -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/js/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/js/map.js -------------------------------------------------------------------------------- /lot/landmapper/static/landmapper/js/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/static/landmapper/js/report.js -------------------------------------------------------------------------------- /lot/landmapper/templates/flatpages/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/templates/flatpages/default.html -------------------------------------------------------------------------------- /lot/landmapper/templates/landmapper/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/templates/landmapper/base.html -------------------------------------------------------------------------------- /lot/landmapper/templates/landmapper/common/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/templates/landmapper/common/header.html -------------------------------------------------------------------------------- /lot/landmapper/templates/landmapper/common/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/templates/landmapper/common/modal.html -------------------------------------------------------------------------------- /lot/landmapper/templates/landmapper/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/templates/landmapper/landing.html -------------------------------------------------------------------------------- /lot/landmapper/templates/landmapper/report/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/templates/landmapper/report/report.html -------------------------------------------------------------------------------- /lot/landmapper/templates/landmapper/two-pane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/templates/landmapper/two-pane.html -------------------------------------------------------------------------------- /lot/landmapper/testing_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/landmapper/testing_files/image_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/landmapper/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/tests.py -------------------------------------------------------------------------------- /lot/landmapper/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/landmapper/tests/output/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/landmapper/tests/test_bypassaddressinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/tests/test_bypassaddressinput.py -------------------------------------------------------------------------------- /lot/landmapper/tests/test_geocode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/tests/test_geocode.py -------------------------------------------------------------------------------- /lot/landmapper/tests/test_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/tests/test_pdf.py -------------------------------------------------------------------------------- /lot/landmapper/tests/test_render_static_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/tests/test_render_static_maps.py -------------------------------------------------------------------------------- /lot/landmapper/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/urls.py -------------------------------------------------------------------------------- /lot/landmapper/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/landmapper/views.py -------------------------------------------------------------------------------- /lot/load_new_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/load_new_conditions.py -------------------------------------------------------------------------------- /lot/lot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/__init__.py -------------------------------------------------------------------------------- /lot/lot/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/celery.py -------------------------------------------------------------------------------- /lot/lot/fixtures/fvs_species_western.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/fvs_species_western.json.gz -------------------------------------------------------------------------------- /lot/lot/fixtures/mills/mills.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/mills/mills.dbf -------------------------------------------------------------------------------- /lot/lot/fixtures/mills/mills.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/mills/mills.prj -------------------------------------------------------------------------------- /lot/lot/fixtures/mills/mills.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/mills/mills.qix -------------------------------------------------------------------------------- /lot/lot/fixtures/mills/mills.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/mills/mills.qpj -------------------------------------------------------------------------------- /lot/lot/fixtures/mills/mills.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/mills/mills.shp -------------------------------------------------------------------------------- /lot/lot/fixtures/mills/mills.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/mills/mills.shx -------------------------------------------------------------------------------- /lot/lot/fixtures/test_conditionvariantlookup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/test_conditionvariantlookup.json -------------------------------------------------------------------------------- /lot/lot/fixtures/test_counties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/test_counties.json -------------------------------------------------------------------------------- /lot/lot/fixtures/test_fvs_variants.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/test_fvs_variants.json.gz -------------------------------------------------------------------------------- /lot/lot/fixtures/test_fvsaggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/test_fvsaggregate.json -------------------------------------------------------------------------------- /lot/lot/fixtures/test_idb_summary.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/test_idb_summary.json.gz -------------------------------------------------------------------------------- /lot/lot/fixtures/test_rasters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/test_rasters.json -------------------------------------------------------------------------------- /lot/lot/fixtures/test_treelive_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/test_treelive_summary.json -------------------------------------------------------------------------------- /lot/lot/fixtures/test_trees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/test_trees.json -------------------------------------------------------------------------------- /lot/lot/fixtures/timberprices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/timberprices.json -------------------------------------------------------------------------------- /lot/lot/fixtures/trees_plotlookup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/fixtures/trees_plotlookup.json -------------------------------------------------------------------------------- /lot/lot/local_settings.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/local_settings.template -------------------------------------------------------------------------------- /lot/lot/new_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/new_settings.py -------------------------------------------------------------------------------- /lot/lot/new_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/new_urls.py -------------------------------------------------------------------------------- /lot/lot/old_django/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/old_django/manage.py -------------------------------------------------------------------------------- /lot/lot/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/run_tests.sh -------------------------------------------------------------------------------- /lot/lot/scripts/load_treelive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/scripts/load_treelive.sh -------------------------------------------------------------------------------- /lot/lot/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/settings.py -------------------------------------------------------------------------------- /lot/lot/static/lot/css/lot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/static/lot/css/lot.css -------------------------------------------------------------------------------- /lot/lot/static/lot/css/manage_scenario.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/static/lot/css/manage_scenario.css -------------------------------------------------------------------------------- /lot/lot/static/lot/css/manage_strata.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/static/lot/css/manage_strata.css -------------------------------------------------------------------------------- /lot/lot/static/lot/js/manage_scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/static/lot/js/manage_scenario.js -------------------------------------------------------------------------------- /lot/lot/static/lot/js/manage_strata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/static/lot/js/manage_strata.js -------------------------------------------------------------------------------- /lot/lot/sync_media.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/sync_media.sh -------------------------------------------------------------------------------- /lot/lot/templates/lot/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/400.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/500.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/account/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/account/base.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/account/login.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/account/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/account/password_reset.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/account/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/account/profile.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/account/signup.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/authopenid/signin_local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/authopenid/signin_local.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/base.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/about.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/base.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/base_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/base_form.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/browse_carbongroups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/browse_carbongroups.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/documentation.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/geosearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/geosearch.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/intro.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/lot_selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/lot_selection.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/manage_scenario.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/manage_scenario.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/manage_strata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/manage_strata.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/manage_strata_orig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/manage_strata_orig.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/map_demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/map_demo.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/map_ext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/map_ext.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/panel.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/supported_browsers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/supported_browsers.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/common/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/common/tests.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/news/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/news/about.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/socialaccount/connections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/socialaccount/connections.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/socialaccount/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/socialaccount/signup.html -------------------------------------------------------------------------------- /lot/lot/templates/lot/tos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/templates/lot/tos.html -------------------------------------------------------------------------------- /lot/lot/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/urls.py -------------------------------------------------------------------------------- /lot/lot/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/views.py -------------------------------------------------------------------------------- /lot/lot/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/watch.sh -------------------------------------------------------------------------------- /lot/lot/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/lot/wsgi.py -------------------------------------------------------------------------------- /lot/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/manage.py -------------------------------------------------------------------------------- /lot/trees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/trees/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/admin.py -------------------------------------------------------------------------------- /lot/trees/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/initial_data.json -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/.gitignore: -------------------------------------------------------------------------------- 1 | test_stands_condid_million* 2 | _*.db 3 | -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/aspect.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/aspect.tif -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/cos_aspect.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/cos_aspect.tif -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/elevation.tif -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/elevationx2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/elevationx2.tif -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/gnn.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/gnn.tif -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/shade.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/shade.tif -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/sin_aspect.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/sin_aspect.tif -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/slope.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/slope.tif -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands.dbf -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands.prj -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands.qpj -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands.shp -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands.shx -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands.zip -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands2.dbf -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands2.prj -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands2.shp -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands2.shx -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_bad.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_bad.dbf -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_bad.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_bad.prj -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_bad.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_bad.qpj -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_bad.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_bad.shp -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_bad.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_bad.shx -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_bad.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_bad.zip -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_condid.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_condid.dbf -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_condid.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_condid.prj -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_condid.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_condid.shp -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_condid.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_condid.shx -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_holes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_holes.zip -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_multi.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_multi.zip -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_noname.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_noname.zip -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/test_stands_utm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/test_stands_utm.zip -------------------------------------------------------------------------------- /lot/trees/fixtures/testdata/userinventory/data.db.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/fixtures/testdata/userinventory/data.db.gz -------------------------------------------------------------------------------- /lot/trees/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/forms.py -------------------------------------------------------------------------------- /lot/trees/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/trees/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/trees/management/commands/check_integrity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/management/commands/check_integrity.py -------------------------------------------------------------------------------- /lot/trees/management/commands/export_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/management/commands/export_matches.py -------------------------------------------------------------------------------- /lot/trees/management/commands/import_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/management/commands/import_data.py -------------------------------------------------------------------------------- /lot/trees/management/commands/import_demo_stands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/management/commands/import_demo_stands.py -------------------------------------------------------------------------------- /lot/trees/management/commands/import_gyb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/management/commands/import_gyb.py -------------------------------------------------------------------------------- /lot/trees/management/commands/precache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/management/commands/precache.py -------------------------------------------------------------------------------- /lot/trees/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/migrations/0001_initial.py -------------------------------------------------------------------------------- /lot/trees/migrations/0002_auto_20200429_1325.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/migrations/0002_auto_20200429_1325.py -------------------------------------------------------------------------------- /lot/trees/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lot/trees/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/models.py -------------------------------------------------------------------------------- /lot/trees/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/plots.py -------------------------------------------------------------------------------- /lot/trees/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ecotrust/forestplanner/HEAD/lot/trees/tasks.py -------------------------------------------------------------------------------- /lot/trees/templates/trees/carbongroup_form.html: -------------------------------------------------------------------------------- 1 |