diff options
author | Ivan Kohler <ivan@freeside.biz> | 2023-01-08 19:20:15 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2023-01-08 19:20:15 -0800 |
commit | 273cb61c012885fe3557404303ebcac3b85bfa3c (patch) | |
tree | 1c53ed51448ce450f7b66f9289ce18df1617d35f | |
parent | aa9c3b717aba1bb6a1e40cced85a5a0d64d61da1 (diff) |
disable shapefile DL in v3
-rw-r--r-- | FS/FS/Mason.pm | 2 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | httemplate/browse/deploy_zone.html | 10 |
3 files changed, 7 insertions, 7 deletions
diff --git a/FS/FS/Mason.pm b/FS/FS/Mason.pm index 0862214f0..5ea913657 100644 --- a/FS/FS/Mason.pm +++ b/FS/FS/Mason.pm @@ -127,7 +127,7 @@ if ( -e $addl_handler_use_file ) { use Number::Phone::Country qw( noexport ); use Business::US::USPS::WebTools::AddressStandardization; use Geo::GoogleEarth::Pluggable 0.16; - use Geo::Shapelib; + #use Geo::Shapelib; use Geo::JSON; use Geo::JSON::FeatureCollection; use LWP::UserAgent; diff --git a/debian/control b/debian/control index dac9173cf..63b74896c 100644 --- a/debian/control +++ b/debian/control @@ -98,7 +98,7 @@ Depends: aspell-en,gnupg,ghostscript,gsfonts,gzip, libunicode-truncate-perl (>= 0.303-1), libpod-simple-perl, liblocale-po-perl, libgeo-uscensus-geocoding-perl, - libnet-sftp-foreign-perl, libpdf-webkit-perl, libgeo-shapelib-perl, + libnet-sftp-foreign-perl, libpdf-webkit-perl, libgeo-json-perl Suggests: libbusiness-onlinepayment-perl Description: Libraries for Freeside billing and trouble ticketing diff --git a/httemplate/browse/deploy_zone.html b/httemplate/browse/deploy_zone.html index 0533d6e0f..8b651c26c 100644 --- a/httemplate/browse/deploy_zone.html +++ b/httemplate/browse/deploy_zone.html @@ -19,7 +19,7 @@ 'Contractual Mbps', 'Vertices', 'Census blocks', - 'Shapefile', + #'Shapefile', 'KMZ', 'GeoJSON', ], @@ -31,7 +31,7 @@ '', '', '', - '<A HREF="'. $fixed_shp. '">download</A>', + #'<A HREF="'. $fixed_shp. '">download</A>', '<A HREF="'. $fixed_kmz. '">download</A>', '<A HREF="'. $fixed_json. '">download</A>', ], @@ -83,7 +83,7 @@ '(adv_speed_down, adv_speed_up)', '(cir_speed_down, cir_speed_up)', ], - links => [ $link_fixed, $link_fixed, '', '', '', '', '', '', $link_shp, $link_kmz, $link_json, ], + links => [ $link_fixed, $link_fixed, '', '', '', '', '', '', $link_kmz, $link_json, ], align => 'cllllrrr', nohtmlheader => 1, disable_maxselect => 1, @@ -106,7 +106,7 @@ 'Service Type', 'Advertised Mbps', 'Vertices', # number of vertices? not so useful - 'Shapefile', + #'Shapefile', 'KMZ', 'GeoJSON', ], @@ -151,7 +151,7 @@ '(is_voice is not null, is_broadband is not null)', '(adv_speed_down, adv_speed_up)', ], - links => [ $link_mobile, $link_mobile, '', '', '', '', '', $link_shp, $link_kmz, $link_json, ], + links => [ $link_mobile, $link_mobile, '', '', '', '', '', $link_kmz, $link_json, ], align => 'clllllr', nohtmlheader => 1, disable_maxselect => 1, |