def getPropertyPricetoIncome(): """ Provide Google charts with values to display on world map (Ajax call result)""" return jsonify( helper.process_country_factor("property_price_to_income_ratio"))
def getRentIndex(): """ Provide Google charts with values to display on world map (Ajax call result)""" return jsonify(helper.process_country_factor("rent_index"))
def getHealthCarePrice(): """ Provide Google charts with values to display on world map (Ajax call result)""" return jsonify(helper.process_country_factor("health_care_index"))
def getCrimeIndex(): return jsonify(helper.process_country_factor("crime_index"))
def getAptPrice(): """ Provide Google charts with values to display on world map (Ajax call result)""" return jsonify(helper.process_country_factor("apt_price"))