StationXML file

I am making station.xml file for my own local station following the ObsPy script but I am not understanding what should I do at the nrl() part. I want to put my own station response.

Please help

If your equipment (sensor and datalogger) is listed in the NRL you can use it to construct your response after figuring out the item key strings to traverse in the “decision tree” (kind of like manufacturer > model > version > settings) thing.

If you can not or don’t want to use the NRL, you could create your response from scratch (which isn’t trivial, that’s why NRL is so valuable), using the objects in the response submodule.

Lastly, if you have your response in some other format like SEED already, you could import that and attach it to your stationxml created from scratch.

Thank you so much for the explanation !