From Golf Range to Free Range

2021-01-08 中國日報網

Get Flash Player

There’s a growing trend in the United States to let old or underused golf courses revert back to nature. One parcel in Grafton, Ohio, converting 39 hectares of land back to green space is a lot more complicated than just not mowing the fairway.

Expanding underused property

In the game of golf, a 「mulligan」 is slang for a second chance. Not long ago, Royal Oaks Golf Club got a major mulligan of its own when the underused property was turned into a nature preserve. Cart paths were converted to walking trails and water hazards became fishing ponds. That’s finally given Jerry Jewell a chance to enjoy the green space.

"I lived there before when it was a golf course but I never came back and played golf on it. So I never got a chance to see what it looked like as far as the landscape and stuff," said Jewell.

Jewell’s story is something that Joe Leslie with Western Reserve Land Conservancy has heard many times. "There’s a select number of people who would use a golf course, whereas in the case of a passive or active recreation area for that matter, it gives the opportunity for many more people to use it," he said.

Western Reserve has worked on 10 similar projects in Ohio, and golf courses across the country are being returned to the 「wild.」 The trend is being fueled by a recovering real estate market, the declining popularity of golf, and the clubhouses and restrooms already on the site. But that return comes with costs.

"Because conversion to a golf course has stripped away some of those natural resource attributes that would allow us to get some of our public funding," Leslie explained.

Converting to natural reserves

So his team replaced the greenway grasses with native plants, and reintroduced native species. And they had to deal with the residual pesticides and fertilizers that kept the green, green.

Western Reserve partnered with the County Parks Department on the conversion. Parks director Jim Ziemnik said despite the cost, many of these projects add economical and ecological benefits to the community, such as flood prevention. "We also know historically that this used to have a lot of wetland — the soil type. So eventually, we’re looking at developing some wetlands," he added.

Returning Royal Oaks to its natural state will allow it to filter heavy snow melt or rainfall into the river instead of into the basements of surrounding homes and businesses as it has for years.

Ziemnik said the key with projects like this is patience. Although the park is open, there’s still plenty to do. "It’s probably going to be in terms of trails, overlooks, wetlands, it’s probably going to be the better part of 10 years," he stated.

As for Jerry Jewell, who now uses the park every day, he doesn’t mind waiting. With what he’s seen so far, he believes things will only get better.

Vocabulary

water hazards: 積水區

(來源:VOA 編輯:Julie)

相關焦點

  • 自由放養兒童 free-range kid
    這些孩子應該從沒體會過做free-range kid(自由放養兒童)的滋味吧。The expression 「free range」 usually relates to animals - often chickens and cows that range or go looking freely for food, rather than being closed in a cage or yard.
  • Range upon range of green hills?
    最近有考友問 range upon range of 這種用法是否地道。經查詢,多數搜索結果顯示均為國內旅遊方面的漢譯英譯法。
  • 每日一詞range
    領域;②排列,連續;③(山)脈v.排列2、單詞助記rang同ring,環形---山脈3、單詞擴展【詞組】a rangeof 一系列,很多,各種各樣的;range from...從…變化到,範圍從…到…4、例句Now utopia has grown unfashionable, as we
  • Python編程入門之 range() 函數
    range(-10, -100, -30)-10, -40, -70To iterate over the indices of a sequence, you can combine range() and len() as follows:若要遍歷序列的索引,可以將range()和
  • 「range」的含義,你get到了嗎?
    舉個例子: There is a full range of activities for children.翻譯:這裡有給孩子們提供的各種各樣的活動。所以這裡的range 可以理解為界限、限制。>空鈴解釋: 在兩個特別的數量,尺寸之間變化,包括兩個量間的其他數量我們來舉個例子:Accomodation ranges from tourist class to luxury hotels.
  • SSIS Golf Program | SSIS高爾夫課程
    SSIS is proud to be expanding the Golf Program to include on-course experience at the Sun Island KunShan Golf Club where students will have access to all of the facilities such as the driving range
  • 零基礎學習Python_組織結構和range()函數
    絕對導入:from part3.my_package import init_test_test  相對導入:from .my_package import init_test_test.代表的是當前目錄..代表上一層目錄運行Python腳本時生成的__pycache__文件夾用python
  • 精講range的用法,不知道的快來學習吧
    這個單音節單詞,它有兩個詞性,分別是名詞詞性和動詞詞性,當range為動詞詞性時,搭配不同,詞義就有很大的區別,下面我們來詳細了解一下。① range from sth to sth 從…… 到…… 之間(變化)The ages of the students in this
  • Python的Range()函數(指南)
    range()函數的歷史雖然Python 2的range()和Python3中的range()共享了一個名字,但它們是完全不同的傢伙。事實上,Python 3中的range()只是Python 2中被稱為xrange的函數的重命名版本。
  • SQL優化系列之 in與range 查詢
    因為在一條索引裡面,range欄位後面的部分是不生效的(ps.需要考慮 ICP)。5.6手冊說明如下:The eq_range_index_dive_limit system variable enables you to configure the number of values at which the optimizer switches from one row estimation strategy to the other.
  • Python的range和xrange
    range函數說明:range([start,] stop[, step]),根據start與stop指定的範圍以及step設定的步長
  • Pakistan testfires long-range ballistic missile
    (Xinhua/ISPR)  ISLAMABAD, Dec. 11 (Xinhua) -- Pakistan on Friday testfired a surface-to-surface ballistic missile, with a maximum range of 2,750 km, the military said.
  • range函數小應用
    range函數就是這樣一個,現在用的都是Python3了,但是,這個函數從Python2開始就已經有了,顯然它是多麼被重視吧。r = range(5000)上面的代碼是在Python3中調試的,如果你這樣做,會返回一個range類的實例對象,注意,不是一個列表。也就是你並不能看到裡面的數字。
  • Python中的for i in range(range()函數的for循環)如何使用,詳細介紹
    range函數的for循環 1
  • Python range()的解釋和可視化
    在研究了enumerate()之後,我們現在來研究另一個重要的函數——range()。在本文中,我們將探討range()的功能並突出研究它的用例——您將了解如何在Python中有效地使用range(),了解它的強大的方面和局限性。與range()相關的問題經常會在技術面試中出現——你查看過我們的Python面試問題了嗎?
  • Python裡的range原來是…
    面試過程中,偶爾也會有人問到range底層問題。那麼,今天我們來深入一下range。首先,Python 2.7* 和 Python 3.*對range的解釋是不同的!(敲黑板…) 其次,在Python3.
  • Python基礎知識--range()函數
    遍歷數字序列,可以使用內置函數range(),可以生成算術級數.1、range的兩種生成方法:(1)range(stop) -> range object,一個結束值,生成從0開始到stop-1的整數數字序列(2)range(start, stop[, step]) -> range object,生成從start到stop-1,步長為step的整數數字序列
  • 汽車儀錶盤上range是什麼
    汽車儀錶盤能夠反映汽車各個系統的工作狀況,而其中就有一個range,那麼汽車儀錶盤上range是什麼意思呢?它顯示的是汽車哪一方面的工作狀況呢?簡單來說就是告訴你當前油量還能跑多遠。預計可行駛的最大距離h2>汽車儀錶盤上range的作用簡單說就是告訴你還能跑多遠,所以一般會在後面顯示一個距離,至於range所顯示距離的根據,就是汽車的油量了,也就是說range是根據汽車所剩油量預計汽車還能形式多遠,這一距離是通過平均油耗計算出來的。
  • 汽車儀錶盤range什麼意思
    【太平洋汽車網】汽車儀錶盤上range的作用簡單說就是告訴你還能跑多遠,所以一般會在後面顯示一個距離,至於range所顯示距離的根據,就是汽車的油量了,也就是說range是根據汽車所剩油量預計汽車還能形式多遠,這一距離是通過平均油耗計算出來的。
  • Python的range函數與for循環語句
    本篇介紹Python for循環語句和range函數的使用,文中主要討論for循環語句,Python的for循環語句類似於shell或是腳本語言中的foreach循環,可以迭代序列對象。使用range函數可以讓Python的for循環提供類似於傳統的for循環功能。通過本篇的學習,可以達成如下目標。