Plugin này chưa được cập nhật với 3 phiên bản mới nhất của WordPress. Nó có thể không được hỗ trợ và bảo trì, và có thể xung đột với các phiên bản WordPress mới nhất.

USGS River Conditions

Mô tả

This is a WordPress plugin that fetches streamflow and river data from the USGS. It’s intended use is for river guides and fishing outfitters to report conditions. It may also be useful for rafting companies and others who offer services related to rivers and streams.

Cài đặt

  1. Upload plugin-name.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Begin by specifying the rivers you’d like to display. Identified as an array within the function. <?php $rivers = usgs_fetch_sites(array('jefferson','madison','bighole','beaverhead','ruby')); ?>
  4. Choose which data parameters to include (stream discharge, temperature, etc), or leave blank to include all. <?php $data_params = usgs_fetch_dataParameters(); ?>
  5. Place a call to fetch the JSON from USGS <?php $riverData = usgs_fetch_riverData($rivers,$data_params); ?>
  6. Display the river data as an unordered list <?php usgs_display_RiverData($riverData,$showMap=false); ?>
  7. Show a static Google map identifying the locations <?php usgs_display_map($riverData,'riverDataMap','riverMap',650,450,$maptype='terrain',$echo=true); ?>

Hỏi đáp

Will I be able to use this plugin without modifying my theme?

No. You’ll need to have basic familiarity with PHP, HTML and CSS for this plugin to work as intended. Future releases will attempt to address this and make it more user friendly.

Do you offer support

Generally no. If you wish to request support you may do it through my personal site. Since this is my first publicly release plugin, if support requests become overwhelming, I’ll likely disable support all together.

Đánh giá

Không có đánh giá nào cho plugin này.

Người đóng góp & Lập trình viên

“USGS River Conditions” là mã nguồn mở. Những người sau đã đóng góp vào plugin này.

Những người đóng góp

Nhật ký thay đổi

1.0

  • Public release