Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
ketankartoza committed Sep 12, 2024
1 parent 8d61a30 commit b4a5ced
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/src/developer/api/guide/measurment.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ TomorrowNow provides access to the data through a RESTful API, available at http
| Observation | Air Temperature Average | | °C | average_air_temperature |
| Observation | Air Temperature Max | | °C | max_air_temperature |
| Observation | Air Temperature Min | | °C | min_air_temperature |
| **WIP** |
| |


Expand Down Expand Up @@ -179,15 +178,15 @@ curl --location --request GET 'https://tngap.dev.do.kartoza.com/api/v1/measureme

### JavaScript-JQuery

var settings = {
"var settings = {
"url": "https://tngap.dev.do.kartoza.com/api/v1/measurement/?lat=-1.404244&lon=35.008688&attributes=max_temperature,min_temperature&start_date=2019-11-01&end_date=2019-11-02&product=historical_reanalysis&output_type=json",
"method": "GET",
"timeout": 0,
};

$.ajax(settings).done(function (response) {
console.log(response);
});
});"


**POST API:**
Expand Down

0 comments on commit b4a5ced

Please sign in to comment.