ให้ข้อมูลเกี่ยวกับปฏิทินการปลูกและดูแลไม้ผลไม้ยืนต้น 21 ชนิด รวมถึงกาแฟ มะพร้าว และชา ใช้สำหรับค้นหาช่วงเวลาในการปลูก ดูแล ออกดอก และเก็บเกี่ยวของพืชแต่ละชนิดในแต่ละเดือน
This skill provides comprehensive data on the planting, caring, flowering, and harvesting schedule for various fruit trees and perennial plants throughout the year.
Use this skill when you need to:
The detailed calendar data is stored in JSON format at:
/home/ubuntu/skills/fruit-tree-calendar/references/calendar_data.json
You can read this file to get the exact schedule for each plant. The JSON file contains an array of objects, where each object represents a plant and its schedule for all 12 months, along with any special notes.
When a user asks about the schedule for a specific plant, read the JSON file and extract the relevant information for the requested plant.
Example usage in Python:
import json
with open('/home/ubuntu/skills/fruit-tree-calendar/references/calendar_data.json', 'r', encoding='utf-8') as f:
data = json.load(f)
# Find data for Durian
durian_data = next((item for item in data if item['ชนิดพืช'] == 'ทุเรียน'), None)
print(durian_data)
This data is specifically formatted to be easily integrated into the web-fahsiam repository on GitHub. The JSON structure can be directly imported or converted to TypeScript objects to match the existing data structures like calendarData.ts in the project.